.section-intro.section.catalog {
    width: 100%;
    margin-top: 0;
    height: 100%;
}

.catalog .page-title {
    font-size: 52px;
    flex: 0 0 50%;
    margin: 0;
}

.subcategory-nav {
    width: 100%;
}

.subcategory-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.subcategory-nav-list-item {
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--black-240);
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
}

.subcategory-nav-list-item_link {
    border-radius: 24px;
    padding: 20px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.subcategory-mobile-wrapper {
    display: none;
}


.category-icon-nationality{
    width: 40px;
    height: 40px;
    object-fit: cover;
}


.subcategory-nav-list-item:hover .category-icon,
.subcategory-nav-list-item:active .category-icon {
    filter: invert(75%) sepia(72%) saturate(727%) hue-rotate(333deg) brightness(101%) contrast(92%);

}

.subcategory-nav-list-item:hover a .category-icon {
    filter: invert(107%) sepia(62%) saturate(727%) hue-rotate(333deg) brightness(101%) contrast(92%);
}

.subcategory-nav-list-item:hover,
.subcategory-nav-list-item:active {
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
}

.subcategory-nav-list-item:hover .subcategory-nav-list-item_link,
.subcategory-nav-list-item:active .subcategory-nav-list-item_link {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* filtration */

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    width: 100%;
    margin-top: 50px;
    justify-content: space-between;

}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 22;
}

.filter-list.active {
    display: flex;
}

.filter-reset-btn {
    opacity: 0;
    visibility: hidden;
    border-radius: 50px;
    padding: 20px;
    cursor: pointer;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--black-240);
    transition: opacity 0.3s ease-in;
    display: none;
    height: 60px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.filter-reset-btn_label {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 17px;
    text-align: center;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.filter-reset-btn.active {
    opacity: 1;
    display: flex;
    visibility: visible;
}

.filter-list-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-item {
    border-radius: 50px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    position: relative;
    min-width: 110px;
    display: flex;
    height: 60px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.filter-item.open {
    backdrop-filter: none;
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: rgb(0 0 0 / 10%);
}

.filter-single__btn {
    border-radius: 50px;
    padding: 20px 30px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    position: relative;
    width: fit-content;
    cursor: pointer;
    display: flex;
    height: 60px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.filter-item__header,
.filter-single__btn {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;

}

.filter-single__btn.active {
    box-shadow: inset 0 0 10px 0 rgb(255 228 0 / 90%);
}

.filter-single__btn.active .filter-single-btn_label {
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.filter-item__label,
.filter-single-btn_label {
    max-width: 86px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 17px;
    color: var(--white);
}


.filter-item__dropdown {
    position: absolute;
    left: 50%;
    top: 110%;
    width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    min-width: max-content;

    border-radius: 24px;

    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;

    transform: translateX(-50%);

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);

    pointer-events: none;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        padding 0.25s ease;

    z-index: 22;
}


.filter-item__dropdown.active {
    opacity: 1;
    max-height: 500px;
    pointer-events: all;
}


.filter-item__btn {
    transition: background 0.25 ease-in-out;
}

.filter-item__header.active .filter-item__label {
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.filter-item__header.active .filter-item__btn {
    rotate: 180deg;
}

.filter-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}



.filter-option {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.selected-filter-value_wrapper.error {
    box-shadow: inset 0 0 10px 0 rgb(255 0 0);
    transition: box-shadow 1s ease;
}

.selected-filter-value.error {
    box-shadow: inset 0 0 10px 0 rgb(255 0 0);
    transition: box-shadow 1s ease;
    border-radius: 10px;
    padding: 0 5px;
}

.no_models_pop_up_wrapper {
    position: fixed;
    opacity: 0;
    top: 10px;
    right: 30px;
    width: 300px;
    padding: 15px 30px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    color: white;
    transition: opacity 0.3s ease-in;
    z-index: 22;
    text-align: center;
}

.no_models_text {
    margin: 0;
}

.no_models_pop_up_wrapper.active {
    opacity: 1;
}


.filter-option input {
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-option__label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    fill: var(--black-240);
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);


    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.filter-option__label:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 4px;
    bottom: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 100%;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 17px 0 rgb(255 255 255 / 40%);
}

.filter-option__input:checked+.filter-option__label {
    border-radius: 100px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
}


.filter-option__input:checked+.filter-option__label:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
    background: linear-gradient(90deg, #0a0a0a 0%, #171502 100%);
    box-shadow: inset 0 0 17px 0 rgb(0 0 0 / 40%);
}

.filter-switcher:has(.filter-option__input:checked) .checked_value {
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.checked_value {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 17px;
    color: var(--white);
    padding: 0;
    margin: 0;
}

.selected-filters-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    min-height: 50px;
    width: 100%;
    margin-bottom: 10px;
}

.selected-filter-value_wrapper {
    border-radius: 24px;
    padding: 0px 8px 0px 14px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--black-240);
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 8px 8px 8px 15px;
    align-items: center;
}

.selected-filter-value_label {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    color: var(--txt-740);
}

.selected-filter-value {

    display: flex;
    gap: 5px;
    align-items: center;
}

.selected-filter-value_text {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    color: var(--white);
}

.selected-filter-value_close,
.selected-filter_close {
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 20px 0 rgba(234, 223, 130, 0.34);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.selected-filter-value_close {
    width: 14px;
    height: 14px;
}

.selected-filter_close {
    width: 20px;
    height: 20px;
}

.selected-filter_close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transform-origin: center;
}

.selected-filter-value_close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transform-origin: center;
}

.selected-filter-value_close span:first-child,
.selected-filter_close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.selected-filter-value_close span:last-child,
.selected-filter_close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.girls-catalog {
    margin-bottom: 70px;
    width: 100%;
}

.seo-columns-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 70px;
}

.seo-column {
    flex: 1;
    padding: 30px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--black-240);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-column p,
.seo-column ul,
.seo-column strong,
.seo-column li {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    margin: 0;
    padding: 0;

}

.seo-column strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
}

.seo-column a {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-column ul {
    padding-left: 25px;
    margin: 10px 0;
}

.seo-column li {
    padding-left: 5px;
}

.seo-column li::marker {
    color: #EADF82;
    font-size: 20px;
}

.seo-column h2 {
    margin: 0;
    margin-top: 10px;

    font-family: var(--font-title);
    font-weight: 700;
    font-size: 52px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq_wrapper {
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.faq-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 52px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding: 0;
}

.faq_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.faq_item {
    border-radius: 24px;
    display: flex;
    flex: 1 1 calc(50% - 20px);
    flex-direction: column;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    padding: 30px;

}

.faq_item h3 {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 28px;
    color: var(--white);
}

.faq_answer {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--txt-740);
    margin: 0;
}

.mobile-holder {
    display: none;
}



.filters-modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: rgba(0, 0, 0, 0.74);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 21;
    width: 80%;
}

.filters-modal.active {
    display: flex;
}

.filters-modal-content {
    width: 100%;
    padding: 0px 15px;
    animation: slideDown 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;

}

@keyframes slideDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.filters-modal-close {
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.filters-modal-close:hover {
    background-color: rgb(18 118 23 / 47%);
}

.filters-modal-inner .filter-item,
.filters-modal-inner .filter-reset-btn {
    width: 100%;
}

.filters-modal-inner .filter-item__header {
    width: 100%;
}

.filter-modal-selected_values,
.filter-modal-reset-values {
    width: 100%;
}

.seo-toggle-btn {
    display: none;
}

.load_more_wrapper{
    border-radius: 100px;
    padding: 16px 20px;
    width: fit-content;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    margin: 15px auto 0 auto;
    transition: all 0.3s ease-in-out;

}
.load_more_wrapper p{
    margin: 0;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.load_more_wrapper:hover{
    box-shadow: inset 0 0 10px 0 rgb(176 158 0 / 92%);
    background: rgb(79 80 25 / 21%);
}
.popular-girls{
    margin-bottom: 30px;
}

@media(max-width: 1024px) {
    .catalog .page-title {
        font-size: 44px;
        flex: 0 0 55%;
        margin: 0;
    }

    .section-intro.section.catalog {
        width: 100%;
        margin: 0px auto 30px auto;
    }

    .filter-container {
        margin-top: 30px;
    }

    .girls-catalog {
        margin-bottom: 50px;
    }

    .seo-columns-wrapper {
        margin-bottom: 50px;
        flex-direction: column;
        gap: 20px;
    }

    .faq_wrapper {
        gap: 30px;
        margin-bottom: 50px;
    }

    .faq_list {
        flex-direction: column;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .faq-title {
        font-size: 44px;
    }
}

@media(max-width: 768px) {
    .subcategory-nav-list {
        gap: 10px;
    }

    .seo-column {
        padding: 30px 20px;
    }

    .faq_item {
        padding: 20px;
    }

    .seo-columns-wrapper {
        flex-direction: column;
    }

    .seo-column h2 {
        font-size: 44px;
    }

    .girls-catalog .girls-list {
        flex-wrap: wrap !important;
    }
    .subcategory-nav-list-item_link{
        padding: 10px 20px;
    }
    .filter-item{
        padding: 10px 20px;
        height: 50px;
    }
    .filter-single__btn{
        padding: 10px 20px;
        height: 50px;

    }
}

@media (max-width: 525px) {
    .subcategory-nav-list-item a .category-icon {
        filter: invert(41%) sepia(10%) saturate(927%) hue-rotate(333deg) brightness(101%) contrast(92%);
    }
    .section-intro.section.catalog {
        margin: 0px auto 20px auto;
        gap: 15px;
    }

    .subcategory-nav-list {
        flex-direction: column;

    }

    .subcategory-nav-list-item {
        border-radius: 14px;
    }

    .subcategory-nav-list-item_link {
        padding: 10px 15px;
    }

    .category-icon-nationality,
    .category-icon {
        width: 30px;
        height: 30px;
    }

    .selected-filter-value_wrapper {
        flex-wrap: wrap;
    }

    .filter-list {
        display: none;
    }

    .mobile-holder {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        flex-direction: column;
        width: 100%;
    }

    .open_modal_filter {
        border-radius: 50px;
        padding: 20px;
        backdrop-filter: blur(20px);
        box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
        background: var(--white-100);
        display: flex;
        gap: 10px;
        height: 50px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex: 1 1 auto;
    }

    .modal_filter_title {
        font-family: var(--font-main);
        font-weight: 500;
        font-size: 17px;
        color: var(--white);
        padding: 0;
        margin: 0;
    }

    .filter-reset-btn {
        height: 50px;
    }

    .filter-single__btn {
        height: 40px;
    }

    .filter-list-btns {
        gap: 15px 30px;
        margin-bottom: 30px;
    }

    .checked_value {
        font-size: 16px;
    }

    .filter-option {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 24px;
    }

    .filter-option__label:before {
        width: 20px;
        height: 20px;
    }

    .filter-option__input:checked+.filter-option__label:before {
        -webkit-transform: translateX(14px);
        -ms-transform: translateX(14px);
        transform: translateX(14px);
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 100%;
        background: linear-gradient(90deg, #0a0a0a 0%, #171502 100%);
        box-shadow: inset 0 0 17px 0 rgb(0 0 0 / 40%);
    }

    .selected-filters-wrapper {
        min-height: 40px;
    }

    .filter-container {
        margin-top: 20px;
    }

    .girls-catalog {
        margin-bottom: 40px;
    }

    .seo-column {
        padding: 15px;
    }

    .seo-column p,
    .seo-column ul,
    .seo-column strong,
    .seo-column li {
        font-weight: 400;
        font-size: 15px;
        line-height: 24px;
    }

    .seo-column h2 {
        font-size: 28px;
    }

    .seo-column a {
        font-size: 15px;
    }

    .seo-column ul {
        margin: 5px 0;
    }

    .seo-column li {
        padding: 0;
    }

    .seo-columns-wrapper {
        margin-bottom: 40px;
        width: 100%;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq_wrapper {
        gap: 20px;
        margin-bottom: 40px;
    }

    .faq_list {
        gap: 10px;
    }

    .faq_item {
        padding: 15px;
    }

    .faq_item h3 {
        font-size: 20px;
    }

    .faq_answer {
        font-size: 15px;
    }

    .catalog .page-title {
        font-size: 32px;
        flex: 0 0 100%;
        line-height: 44px;
    }

    .intro-desciption p {
        font-size: 15px;
        line-height: 24px;
    }

    .no_models_pop_up_wrapper {
        bottom: 10px;
        right: 10px;
        top: auto;
        width: fit-content;
        padding: 10px 15px;
        border-radius: 14px;
    }
}

@media (max-width: 450px) {

    .intro-desciption {
        display: none;
    }

    .subcategory-mobile-wrapper {
        display: flex;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        padding: 10px 0px;
    }

    .subcategory-mobile-header {
        display: flex;
        gap: 10px;
    }

    .dropdown-btn-wrapper {
        display: flex;
        transition: transform 0.3s linear;
    }

    .subcategory-mobile-title {
        font-family: var(--font-main);
        font-weight: 400;
        font-size: 17px;
        margin: 0;
        text-align: center;
        color: var(--white);
    }

    .subcategory-nav {
        border-radius: 14px;
        padding: 10px 15px;
        gap: 12px;
        backdrop-filter: blur(20px);
        box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
        background: var(--white-100);
        transition: all 0.3s linear;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

    .faq_item h3{
        position: relative;
    }
    .faq_item h3::after{
        content: url(../../images/front/arrow_drop_down_circle.svg);
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        transition: transform 0.3s ease-in-out;
    }
    .faq_item.active{
        background: var(--black-240);
    }
    .faq_item.active h3::after{
        
        transform: translateY(-50%) rotate(180deg);
    }
    .faq_item h3.active{
       color: #efa75e;
    }
    .faq_answer{
        visibility: hidden;
        max-height: 0;
        transition: all 0.3s linear;
    }
    .faq_answer.active{
        visibility: visible;
        max-height: 1500px;
    }
     .subcategory-nav.mobile .subcategory-nav-list {
        max-height: 0px;
        overflow: hidden;
    }
    .subcategory-nav.mobile.open .subcategory-nav-list {
        max-height: 1500px;
        overflow: visible;
    }

    .subcategory-nav.open .subcategory-nav-list-item {
        backdrop-filter: blur(20px);
        box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
        background: var(--white-100);
    }
    
    .subcategory-nav.open {
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(20px);
        box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
        background: var(--black-240);
    }

    .subcategory-nav.open .dropdown-btn-wrapper {
        transform: rotate(180deg);
    }
    .selected-filters-wrapper {
        display: none;
    }

    .filter-modal-selected_values .selected-filters-wrapper {
        display: flex;
    }

    .seo-column-inner {
        position: relative;
        max-height: 190px;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .seo-column-inner.expanded {
        max-height: 2000px;
    }

    .seo-fade {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 47px;
        height: 50px;
        width: calc(100% - 26px);
        pointer-events: none;
        backdrop-filter: blur(4px) saturate(1.2);
           background:rgb(60 55 55 / 8%);

        transition: opacity 0.3s;
        filter: blur(3px);
    }


    .seo-column-inner.expanded + .seo-fade {
        opacity: 0;
    }

    .seo-toggle-btn {
        display: flex;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 2;
        justify-content: center;
        font-family: var(--font-main);
        font-weight: 600;
        font-size: 15px;
        background: linear-gradient(90deg, #eadf82 0%, #efa75e 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}