@import "../../../components/section/css/banner.css";

@import "../../../components/section/css/blog.css";

/* 
blog section
*/

/* sc-inner */
#blog .sc-inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
    #blog .sc-inner {
        padding-top: 40px;
        padding-bottom: 80px;
    }
}

/* == detail-section == */

/* heaer-section */
#blog .detail-section .header-section {
    margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
    #blog .detail-section .header-section {
        margin-bottom: 40px;
    }
}

/* content-section */

#blog .detail-section .content-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width:767px) {
    #blog .detail-section .content-section {
        gap: 40px;
    }
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination .number-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination .number-list .number {
    color: #A4A4A4;
    font-size: 16px;
    line-height: 19.2px;

}

.pagination .number-list .number.active {
    color: var(--ccrc-theme_c-navy);
    background-color: var(--ccrc-theme_c-light-green);
    box-shadow: rgba(203, 219, 42, 0.25) 0px 0px 0px 4px;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px;
    height: 30px;
}

.pagination .arrow-right {
    width: 4.75px;
    height: 8px;
}

.pagination .arrow-right::before {
    content: "";
    display: block;
    position: static;
    width: 100%;
    height: 100%;
    background-image: url('../../../components/globle/img/icon/arrow-right-gray.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/* nav */

#blog .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#blog .nav-bar .nav-list {
    display: flex;
    gap: 7px;
}

@media screen and (max-width: 992px) {
    #blog .nav-bar {
        flex-direction: column;
        gap: 24px;
    }

    #blog .nav-bar .overlay-scroll {
        overflow: hidden;
        width: 100%;
    }

    #blog .nav-bar .scroll {
        overflow: auto;
    }

    #blog .nav-bar .nav-list {
        width: max-content;

    }
}



#blog .nav-bar .nav-list .nav {
    position: relative;
    background-color: #E7E7E7;
    display: inline-block;
    width: fit-content;
    padding: 13px 34px;
    border-radius: 30px;
    /* font */
    font-size: var(--ccrc-theme_fs-standard);
    font-weight: 700;
    line-height: 19.2px;
    color: var(--ccrc-theme_c-dark-green);
}

#blog .nav-bar .nav-list .nav.active {
    position: relative;
    background-color: var(--ccrc-theme_c-light-green);
    display: inline-block;
    width: fit-content;
    padding: 13px 34px;
    border-radius: 30px;
    /* font */
    font-size: var(--ccrc-theme_fs-standard);
    font-weight: 700;
    line-height: 19.2px;
    color: var(--ccrc-theme_c-dark-green);
}

#blog .nav-bar .nav-select {
    width: 295px;
    height: 45px;
}

@media screen and (max-width: 992px) {
    #blog .nav-bar .nav-select {
        width: 100%;
    }
}


/* seclect 2 */
#blog .nav-bar .nav-select .select2.select2-container.select2-container--default .selection .select2-selection,
#blog .nav-bar .nav-select .select2.select2-container.select2-container--default .selection,
#blog .nav-bar .nav-select .select2.select2-container.select2-container--default {
    width: 100% !important;
    height: 100% !important;
}

#blog .nav-bar .nav-select .select2-container--default .select2-selection--single {
    border: 1px solid #E7E7E7;
    border-radius: 8px;
}

#blog .nav-bar .nav-select .select2.select2-container .selection {
    display: block;
}

#blog .nav-bar .nav-select .select2.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 24px;

    /* font */
    font-size: 16px;
    line-height: 19.2px;
    font-weight: 500;
    color: #1C3B51;
}

#blog .nav-bar .nav-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #1C3B51;
}

#blog .nav-bar .nav-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

#blog .nav-bar .nav-select .select2-container--default .select2-selection--single .select2-selection__arrow::before {
    content: "";
    background-image: url('../../../components/globle/img/icon/arrow-select.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}

#blog .nav-bar .nav-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 4.75px;
    width: 8px;
    right: 24px;
    top: 50%;
    transform: translate(0, -50%);
}