.msb-faq {
    /* padding: 18px 0; */
    position: relative;
    z-index: 10;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
}

.msb-faq__head {
    margin-bottom: 12px;
}

.msb-faq__title {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
    color: #091e42;
}

.msb-faq__q {
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    background: #fff;
}

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

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

.msb-faq__meta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.msb-faq__date {
    font-size: 14px;
    color: rgba(0, 0, 0, .55);
    text-align: right;
    display: block;
    margin-bottom: 16px;
}

.msb-faq__chev {
    width: 26px;
    height: 26px;
    top: -6px;
    border-radius: 999px;
    /*border:1px solid rgba(0,0,0,.12);*/
    position: relative;
}

.msb-faq__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__item[open] .msb-faq__chev:before {
    transform: rotate(-135deg);
    top: 10px;
}

/* Slide animation for FAQ answer */
.msb-faq__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: 16px;
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
}

.msb-faq__item[open] .msb-faq__a {
    grid-template-rows: 1fr;
    padding-bottom: 14px;
}

.msb-faq__a-content {
    overflow: hidden;
}

/* Hover effect on question */
.msb-faq__q {
    transition: background-color 0.2s ease;
}

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

/* Active state */
/* .msb-faq__item[open] .msb-faq__q {
    background-color: rgba(0, 0, 0, 0.02);
} */

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

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

/* Floating CTA bottom-right like UI */
.msb-faq__floating-cta {
    position: absolute;
    right: 0;
    bottom: -38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ff6a00;
    background: #fff;
    color: #ff6a00;
    text-decoration: none;
    font-size: 14px;
}

.msb-faq__floating-cta:hover {
    background: rgba(255, 106, 0, .06);
}
.msb-faq__head {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.msb-faq__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #091e42;
    text-decoration: none;
    white-space: nowrap;
}

.msb-faq__more:hover {
    color: #ff6a00;
}

.msb-faq__more-ico {
    width: 16px;
    height: 16px;
    position: relative;
}

.msb-faq__more-ico:before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(9, 30, 66, .8);
    border-bottom: 2px solid rgba(9, 30, 66, .8);
    transform: rotate(-45deg);
}

.msb-faq__more:hover .msb-faq__more-ico:before {
    border-right-color: #ff6a00;
    border-bottom-color: #ff6a00;
}

@media only screen and (max-width: 767px) {
    .msb-faq__more {
        display: none
    }
}