/* ==========================================================================
   supportlist.css — styles for the supportlist page (supportlist.html)
   Split out of style.css. Loaded AFTER style.css, so these rules win on this page.
   Shared blocks are copies here; the originals stay in style.css for other pages.
   ========================================================================== */

/* ========== Financial Analysis Page ========== */
.analysis-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 72px;
}
.analysis-pagination .page-link {
    min-width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-300);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    transition: color .15s, background .15s;
}
.analysis-pagination .page-link.is-active {
    color: var(--ink-900);
    background: rgba(17, 24, 39, .04);
}
.analysis-pagination .page-link:not(.page-disabled):hover {
    color: var(--brand-purple);
    background: rgba(157, 92, 254, .08);
}
.analysis-pagination .page-disabled {
    opacity: .36;
    cursor: default;
}
/* ========== FAQ ========== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transition: box-shadow .15s, border-color .15s;
}
.faq-item.faq-open {
    border-color: var(--brand-purple);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    color: var(--ink-900);
}
.faq-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #9d5cfe;
    flex-shrink: 0;
}
.faq-q-text {
    flex: 1;
}
.faq-chev {
    color: var(--ink-500);
    display: flex;
    transition: transform .25s;
}
.faq-item.faq-open .faq-chev {
    transform: rotate(180deg);
}
.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
}
.faq-item.faq-open .faq-a {
    max-height: 240px;
}
.faq-a-inner {
    padding: 0 24px 20px 50px;
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.7;
}
/* ========== FAQ Page ========== */
.faq-template {
    background: #fff;
}
.faq-page-section {
    padding: 92px 0 88px;
}
.faq-page-section .container {
    max-width: 1180px;
}
.faq-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 78px;
    margin-bottom: 58px;
}
.faq-tabs a {
    color: #6e727c;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    transition: color .15s;
}
.faq-tabs a:hover,
.faq-tabs a.is-active {
    color: #1f2430;
}
.faq-page-list {
    gap: 14px;
}
.faq-empty {
    padding: 30px 24px;
    border: 1px solid rgba(229, 231, 235, .92);
    border-radius: 8px;
    color: #7b8190;
    font-size: 16px;
    text-align: center;
}
.faq-page-list .faq-item {
    border-color: rgba(229, 231, 235, .92);
    border-radius: 8px;
}
.faq-page-list .faq-item.faq-open {
    border-color: rgba(229, 231, 235, .92);
}
.faq-page-list .faq-q {
    min-height: 58px;
    padding: 18px 24px;
    font-size: 18px;
}
.faq-page-list .faq-item.faq-open .faq-q {
    padding: 22px 24px 12px;
}
.faq-page-list .faq-item.faq-open .faq-q-text {
    font-weight: 800;
}
.faq-page-list .faq-item.faq-open .faq-chev {
    color: var(--brand-purple);
}
.faq-page-list .faq-a-inner {
    padding: 0 24px 22px;
    color: #5d6574;
    font-size: 16px;
    line-height: 1.8;
}
.faq-pagination {
    margin-top: 44px;
}
/* ========== Responsive ========== */
@media (max-width: 860px) {
    .faq-q {
        padding: 16px 18px;
        font-size: 14px;
        gap: 10px;
    }

    .faq-a-inner {
        padding: 0 18px 16px 40px;
        font-size: 13px;
    }

    .faq-item.faq-open .faq-a {
        max-height: 320px;
    }

    .analysis-pagination {
        margin-top: 40px;
        gap: 6px;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .analysis-pagination .page-link {
        min-width: 44px;
        height: 44px;
        font-size: 15px;
        padding: 0 6px;
    }

    .faq-page-section {
        padding: 56px 0 60px;
    }

    .faq-tabs {
        gap: 28px;
        margin-bottom: 32px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .faq-tabs a {
        font-size: 22px;
        white-space: nowrap;
        padding: 8px 2px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .faq-page-list {
        gap: 12px;
    }

    .faq-page-list .faq-q {
        min-height: 52px;
        padding: 16px 18px;
        font-size: 16px;
        gap: 10px;
    }

    .faq-page-list .faq-item.faq-open .faq-q {
        padding: 18px 18px 10px;
    }

    .faq-page-list .faq-a-inner {
        padding: 0 18px 18px;
        font-size: 15px;
        line-height: 1.75;
    }

    .faq-item.faq-open .faq-a {
        max-height: 600px;
    }

    .faq-empty {
        padding: 24px 18px;
        font-size: 15px;
    }

    .faq-pagination {
        margin-top: 32px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .faq-pagination .page-link {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
@media (max-width: 560px) {
    .faq-q {
        padding: 14px 14px;
        font-size: 13px;
    }

    .faq-a-inner {
        padding: 0 14px 14px 32px;
        font-size: 12px;
    }

    .analysis-pagination {
        margin-top: 32px;
        gap: 4px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px;
        scrollbar-width: none;
    }

    .analysis-pagination::-webkit-scrollbar {
        display: none;
    }

    .analysis-pagination .page-link {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .faq-page-section {
        padding: 40px 0 48px;
    }

    .faq-tabs {
        gap: 20px;
        margin-bottom: 24px;
    }

    .faq-tabs a {
        font-size: 18px;
    }

    .faq-page-list {
        gap: 10px;
    }

    .faq-page-list .faq-q {
        min-height: 48px;
        padding: 14px 14px;
        font-size: 15px;
        gap: 8px;
    }

    .faq-page-list .faq-item.faq-open .faq-q {
        padding: 16px 14px 8px;
    }

    .faq-dot {
        width: 8px;
        height: 8px;
    }

    .faq-chev svg {
        width: 14px;
        height: 14px;
    }

    .faq-page-list .faq-a-inner {
        padding: 0 14px 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-empty {
        padding: 20px 14px;
        font-size: 14px;
    }

    .faq-pagination {
        margin-top: 28px;
        gap: 8px;
    }

    .faq-pagination .page-link {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
    }
}
/* ============================================================
 * Final mobile overrides: keep this block at the end of the file.
 * ============================================================ */
@media (max-width: 860px) {
    .calendar-template .calendar-hero,
    .faq-page-section,
    .financial-analysis-hero {
        padding-top: 40px;
    }

    .calendar-tabs,
    .faq-tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 24px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 2px 2px 8px;
        scrollbar-width: none;
    }

    .calendar-tabs::-webkit-scrollbar,
    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .calendar-tab,
    .faq-tabs a {
        flex: 0 0 auto;
        min-width: auto;
        min-height: 40px;
        padding: 9px 16px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        background: #f3f5f8;
        color: #4b5563;
        border: 1px solid transparent;
        box-shadow: none;
    }

    .calendar-tab.is-active,
    .faq-tabs a.is-active,
    .faq-tabs a:hover {
        background: #1b4fe0;
        color: #fff;
        border-color: #1b4fe0;
    }

    .analysis-pagination,
    .faq-pagination,
    .academy-pagination {
        justify-content: center !important;
        overflow: visible;
        flex-wrap: wrap;
        padding: 0;
    }
}
/* ============================================================
 * Mobile final pass: navigation, CTA, content lists and detail pages
 * ============================================================ */
@media (max-width: 860px) {
    .calendar-template .calendar-hero,
    .faq-page-section,
    .financial-analysis-hero {
        padding-top: 40px;
    }

    .calendar-tabs,
    .faq-tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 24px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 2px 2px 8px;
        scrollbar-width: none;
    }

    .calendar-tabs::-webkit-scrollbar,
    .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    .calendar-tab,
    .faq-tabs a {
        flex: 0 0 auto;
        min-width: auto;
        min-height: 40px;
        padding: 9px 16px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        background: #f3f5f8;
        color: #4b5563;
        border: 1px solid transparent;
        box-shadow: none;
    }

    .calendar-tab.is-active,
    .faq-tabs a.is-active,
    .faq-tabs a:hover {
        background: #1b4fe0;
        color: #fff;
        border-color: #1b4fe0;
    }

    .analysis-pagination,
    .faq-pagination,
    .academy-pagination {
        justify-content: center !important;
        overflow: visible;
        flex-wrap: wrap;
        padding: 0;
    }
}

/* ========== Calendar-style image hero ========== */
.support-hero {
    padding: clamp(74px, 6.82vw, 131px) 0 clamp(65px, 5.99vw, 115px);
    text-align: center;
    background: url(../img/support/faq-hero-bg.webp) center top / 100% auto no-repeat;
}
.support-hero h1 {
    margin: 0 0 clamp(20px, 1.82vw, 35px);
    color: #FFFFFF;
    font-size: clamp(32px, 2.92vw, 56px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
}
.support-hero p {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 400;
}

/* ========== Support list final sync with academy tabs and FAQ rows ========== */
body .faq-template,
body .faq-page-section {
    background: #f3f6f8;
}
body .faq-page-section {
    padding: clamp(51px, 4.69vw, 90px) 0 0;
}
body .faq-template .faq-tabs {
    display: flex;
    gap: clamp(24px, 2.19vw, 42px);
    justify-content: center;
    margin: 0 0 clamp(34px, 3.65vw, 70px);
    padding: 0;
    overflow: visible;
}
body .faq-template .faq-tabs a {
    display: inline-flex;
    min-width: clamp(107px, 9.9vw, 190px);
    height: clamp(38px, 3.54vw, 68px);
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    color: #044ff6;
    font-size: clamp(14px, 1.25vw, 24px);
    font-weight: 500;
    border: 1px solid #7ea3ff;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    transform: none;
}
body .faq-template .faq-tabs a:hover,
body .faq-template .faq-tabs a.is-active {
    color: #fff;
    background: #044ff6;
    border-color: #044ff6;
    box-shadow: 0 10px 22px rgba(4, 79, 246, .18);
    transform: none;
}
body .faq-template .faq-page-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
body .faq-template .faq-page-list .faq-item {
    border: 0;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
    overflow: hidden;
}
body .faq-template .faq-page-list .faq-item.faq-open {
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(140, 175, 210, .2);
}
body .faq-template .faq-page-list .faq-item + .faq-item {
    margin-top: -2px;
}
body .faq-template .faq-page-list .faq-q {
    min-height: clamp(72px, 5.156vw, 99px);
    gap: clamp(14px, .99vw, 19px);
    padding: 0 clamp(32px, 2.5vw, 48px) 0 clamp(24px, 1.823vw, 35px);
    color: #686e7f;
    font-family: MiSans-Semibold, "Microsoft YaHei", Arial, sans-serif;
    font-size: clamp(16px, 1.042vw, 20px);
    font-weight: 600;
    line-height: 1.35;
}
body .faq-template .faq-page-list .faq-item.faq-open .faq-q {
    padding: 0 clamp(32px, 2.5vw, 48px) 0 clamp(24px, 1.823vw, 35px);
}
body .faq-template .faq-page-list .faq-dot {
    flex: 0 0 clamp(14px, .938vw, 18px);
    width: clamp(14px, .938vw, 18px);
    height: clamp(14px, .938vw, 18px);
    background: #5379ff;
}
body .faq-template .faq-page-list .faq-q-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}
body .faq-template .faq-page-list .faq-item.faq-open .faq-q-text {
    font-weight: 600;
}
body .faq-template .faq-page-list .faq-chev {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    color: #5379ff;
}
body .faq-template .faq-page-list .faq-item.faq-open .faq-chev {
    color: #5379ff;
}
body .faq-template .faq-page-list .faq-item.faq-open .faq-a {
    max-height: 600px;
}
body .faq-template .faq-page-list .faq-a-inner {
    padding: 0 clamp(32px, 2.5vw, 48px) clamp(24px, 1.823vw, 35px) clamp(58px, 4.43vw, 85px);
    color: #686e7f;
    font-size: clamp(14px, .833vw, 16px);
    line-height: 1.8;
}
body .faq-template .faq-pagination .page-link:first-child,
body .faq-template .faq-pagination .page-link:last-child {
    font-size: 0;
}
body .faq-template .faq-pagination .page-link:first-child::before,
body .faq-template .faq-pagination .page-link:last-child::before {
    content: "";
    display: block;
    width: clamp(5px, 0.47vw, 9px);
    height: clamp(9px, 0.83vw, 16px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
body .faq-template .faq-pagination .page-link:first-child::before {
    background-image: url("../img/common/pagination-arrow-left.webp");
}
body .faq-template .faq-pagination .page-link:last-child::before {
    background-image: url("../img/common/pagination-arrow-right.webp");
}

@media (max-width: 860px) {
    body .faq-template .faq-tabs {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        margin-bottom: 28px;
    }

    body .faq-template .faq-tabs a {
        width: auto;
        min-width: 0;
        height: 44px;
        padding: 0 10px;
        font-size: 14px;
        white-space: nowrap;
    }

    body .faq-template .faq-page-list {
        gap: 10px;
    }

    body .faq-template .faq-page-list .faq-item {
        border-radius: 8px;
    }

    body .faq-template .faq-page-list .faq-item + .faq-item {
        margin-top: 0;
    }

    body .faq-template .faq-page-list .faq-q,
    body .faq-template .faq-page-list .faq-item.faq-open .faq-q {
        min-height: clamp(19px, 5vw, 54px);
        gap: 12px;
        padding: 14px 18px;
        font-size: 15px;
    }

    body .faq-template .faq-page-list .faq-dot {
        flex-basis: 10px;
        width: 10px;
        height: 10px;
    }

    body .faq-template .faq-page-list .faq-a-inner {
        padding: 0 18px 18px 40px;
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    body .faq-template .faq-tabs {
        grid-template-columns: 1fr;
    }

    body .faq-template .faq-page-list .faq-q,
    body .faq-template .faq-page-list .faq-item.faq-open .faq-q {
        min-height: clamp(19px, 5vw, 54px);
        gap: 10px;
        padding: 12px 14px;
        font-size: 14px;
    }

    body .faq-template .faq-page-list .faq-dot {
        flex-basis: 8px;
        width: 8px;
        height: 8px;
    }

    body .faq-template .faq-page-list .faq-a-inner {
        padding: 0 14px 16px 32px;
        font-size: 13px;
    }
}

@media (max-width: 1079px) {
    body .support-hero {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: clamp(98px, 26.2vw, 283px);
        padding: 0;
        overflow: hidden;
        text-align: center;
        background: url(../img/support/faq-hero-mobile.webp) center top / cover no-repeat;
    }

    body .support-hero .container {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 0 18px;
    }

    body .support-hero h1 {
        margin: 0 0 clamp(11px, 2.87vw, 31px);
        color: #fff;
        font-size: clamp(19px, 5.19vw, 56px);
        font-weight: 800;
        line-height: 1.22;
        letter-spacing: 0;
    }

    body .support-hero p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
        font-size: clamp(11px, 2.96vw, 32px);
        font-weight: 400;
        line-height: 1.45;
    }
}

/* ========== Support mobile content adaptation ========== */
@media (max-width: 1079px) {
    body .faq-template,
    body .faq-page-section {
        background: #f3f6f8;
    }

    body .faq-page-section {
        min-height: 0;
        padding: clamp(28px, 7.59vw, 82px) 0 0;
    }

    body .faq-page-section .container,
    body .faq-template .container {
        width: 100%;
        max-width: 640px;
        padding-left: clamp(12px, 3.15vw, 34px);
        padding-right: clamp(12px, 3.15vw, 34px);
    }

    body .faq-template .faq-tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: clamp(14px, 3.8vw, 41px);
        width: 100%;
        margin: 0 0 clamp(17px, 4.44vw, 48px);
        padding: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body .faq-template .faq-tabs::-webkit-scrollbar {
        display: none;
    }

    body .faq-template .faq-tabs a,
    body .faq-template .faq-tabs a.is-active {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: clamp(66px, 17.7vw, 191.15px);
        min-width: clamp(66px, 17.7vw, 191.15px);
        min-height: clamp(24px, 6.3vw, 68px);
        height: clamp(24px, 6.3vw, 68px);
        padding: 0 clamp(17px, 4.44vw, 48px);
        border: 1px solid #5f8cff;
        border-radius: 999px;
        background: transparent;
        color: #0955ff;
        font-size: clamp(8px, 2.22vw, 24px);
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
        box-shadow: none;
        transform: none;
    }

    body .faq-template .faq-tabs a:hover,
    body .faq-template .faq-tabs a.is-active {
        border-color: #0955ff;
        background: #0955ff;
        color: #fff;
        box-shadow: none;
        transform: none;
    }

    body .faq-template .faq-page-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    body .faq-template .faq-page-list .faq-item,
    body .faq-template .faq-page-list .faq-item.faq-open {
        border: 0;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 3px 10px rgba(92, 116, 140, .14);
        overflow: hidden;
        transition: none;
    }

    body .faq-template .faq-page-list .faq-item + .faq-item {
        margin-top: 0;
    }

    body .faq-template .faq-page-list .faq-q,
    body .faq-template .faq-page-list .faq-item.faq-open .faq-q {
        position: relative;
        display: flex;
        align-items: center;
        min-height: clamp(19px, 5vw, 54px);
        gap: 0;
        padding: 14px 18px 14px 34px;
        color: #82889A;
        font-family: MiSans-Semibold, MiSans, var(--font-sans);
        font-size: clamp(11px, 2.96vw, 32px);
        font-weight: 700;
        line-height: 1.42;
        cursor: pointer;
    }

    body .faq-template .faq-page-list .faq-dot {
        position: absolute;
        left: 13px;
        top: 50%;
        flex: none;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #5379FF;
        transform: translateY(-50%);
    }

    body .faq-template .faq-page-list .faq-q-text {
        display: block;
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        color: #82889A;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body .faq-template .faq-page-list .faq-chev {
        position: static;
        display: inline-flex;
        flex: 0 0 18px;
        width: clamp(9px, 2.44vw, 26.37px);
        height: auto;
        align-items: center;
        justify-content: center;
        color: #5f86ff;
        transform: none;
        transition: transform .2s ease;
    }

    body .faq-template .faq-page-list .faq-chev svg {
        width: 16px;
        height: 16px;
    }

    body .faq-template .faq-page-list .faq-item.faq-open .faq-q {
        align-items: flex-start;
        padding: clamp(13px, 3.43vw, 37px) clamp(20px, 5.37vw, 58px) clamp(7px, 1.94vw, 21px) clamp(13px, 3.52vw, 38px);
    }

    body .faq-template .faq-page-list .faq-item.faq-open .faq-dot {
        display: none;
    }

    body .faq-template .faq-page-list .faq-item.faq-open .faq-q-text {
        overflow: visible;
        white-space: normal;
    }

    body .faq-template .faq-page-list .faq-item.faq-open .faq-chev {
        position: absolute;
        top: clamp(13px, 3.43vw, 37px);
        right: 18px;
        color: #5f86ff;
        transform: rotate(180deg);
    }

    body .faq-template .faq-page-list .faq-a {
        overflow: hidden;
        max-height: 0;
        transition: max-height .25s ease;
    }

    body .faq-template .faq-page-list .faq-item.faq-open .faq-a {
        max-height: 600px;
    }

    body .faq-template .faq-page-list .faq-a-inner {
        padding: 0 clamp(20px, 5.37vw, 58px) clamp(15px, 4.07vw, 44px) clamp(13px, 3.52vw, 38px);
        color: #8b94a6;
        font-family: MiSans, var(--font-sans);
        font-size: clamp(10px, 2.59vw, 28px);
        font-weight: 400;
        line-height: 1.35;
    }

    body .faq-pagination {
        display: flex;
        align-items: center;
        justify-content: center !important;
        gap: 32px;
        margin: clamp(28px, 7.59vw, 82px) 0 0;
        padding: 0;
        overflow: visible;
        flex-wrap: nowrap;
    }

    body .faq-pagination .page-link {
        display: inline-flex;
        flex: 0 0 40px;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        background: transparent;
        color: #222833;
        font-size: clamp(11px, 2.96vw, 32px);
        font-weight: 400;
        line-height: 1;
        box-shadow: none;
    }

    body .faq-pagination .page-link.is-active {
        background: #e5ebfb;
        color: #222833;
    }

    body .faq-pagination .page-link:first-child,
    body .faq-pagination .page-link:last-child {
        color: #b9cdfb;
    }
}

@media (max-width: 374px) {
    body .faq-page-section .container,
    body .faq-template .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    body .faq-template .faq-tabs {
        gap: 12px;
        justify-content: flex-start;
    }

    body .faq-template .faq-tabs a,
    body .faq-template .faq-tabs a.is-active {
        flex-basis: 96px;
        width: 96px;
        min-width: 96px;
        font-size: 12px;
    }

    body .faq-template .faq-page-list .faq-q,
    body .faq-template .faq-page-list .faq-item.faq-open .faq-q {
        font-size: 15px;
    }

    body .faq-template .faq-page-list .faq-a-inner {
        font-size: 13px;
    }
}
