.msb-faq-v2 .msb-faq-v2__tabs,
.msb-faq-v2 .msb-faq-v2__panel
{
    width: 100%;
    max-width: var(--max-width, 1366px);
    padding: 0 24px;
    margin: 0 auto;
    position: relative;
}

/* =====================
   Tabs
   ===================== */
.msb-faq-v2__tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px !important;
}

.msb-faq-v2__tab {
    padding: 8px 20px;
    border-radius: 32px;
    border: 1.5px solid #DEE5EF;
    background: #fff;
    color: #091E42;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    margin: 0;
    text-transform: none;
}

.msb-faq-v2__tab.is-active,
.msb-faq-v2__tab:hover:not(.is-active) {
    border-color: #F8A06D;
    color: #F4600C;
    background: #FEEFE7;
}

/* =====================
   Panels
   ===================== */
.msb-faq-v2__panel {
    display: none;
}

.msb-faq-v2__panel.is-active {
    display: block;
}

/* =====================
   FAQ List
   ===================== */
.msb-faq-v2__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =====================
   FAQ Item
   ===================== */
.msb-faq-v2__item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.msb-faq-v2__q {
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    background: #fff;
    transition: background-color 0.2s ease;
}

.msb-faq-v2__q::-webkit-details-marker {
    display: none;
}

.msb-faq-v2__q:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.msb-faq-v2__item[open] .msb-faq-v2__q {
    background-color: rgba(0, 0, 0, 0.02);
}

.msb-faq-v2__qtext {
    font-weight: 600;
    color: #091E42;
    line-height: 1.35;
    font-size: 18px;
}

/* Chevron */
.msb-faq-v2__chev {
    width: 26px;
    height: 26px;
    top: -6px;
    border-radius: 999px;
    position: relative;
    flex-shrink: 0;
}

.msb-faq-v2__chev:before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(0, 0, 0, .55);
    border-bottom: 2px solid rgba(0, 0, 0, .55);
    transform: rotate(45deg);
    top: 8px;
    transition: transform 0.3s ease, top 0.3s ease;
}

.msb-faq-v2__item[open] .msb-faq-v2__chev:before {
    transform: rotate(-135deg);
    top: 10px;
}

/* Answer — slide animation */
.msb-faq-v2__a {
    color: #091E42;
    line-height: 1.6;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-out, padding 0.35s ease-out;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
}

.msb-faq-v2__item[open] .msb-faq-v2__a {
    grid-template-rows: 1fr;
    padding-bottom: 14px;
}

.msb-faq-v2__a-inner {
    overflow: hidden;
}

.msb-faq-v2__date {
    display: block;
    font-size: 14px;
    color: rgba(0, 0, 0, .55);
    margin-bottom: 6px;
}

.msb-faq-v2__a p {
    margin: 0 0 10px;
}

.msb-faq-v2__a p:last-child {
    margin-bottom: 0;
}

/* =====================
   Empty
   ===================== */
.msb-faq-v2__empty {
    padding: 40px 0;
    color: #6B7280;
    font-size: 16px;
    margin: 0;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 767px) {
    .msb-faq-v2__heading {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .msb-faq-v2__tabs {
        margin-bottom: 16px;
    }

    .msb-faq-v2__tab {
        padding: 6px 16px;
        font-size: 14px;
    }

    .msb-faq-v2__qtext {
        font-size: 15px;
    }

    .msb-faq-v2__a {
        font-size: 14px;
    }
}
