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

/* =====================
   Head / More button
   ===================== */
.msb-faq__head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.msb-faq__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #F4600C;
    text-decoration: none;
    transition: opacity 0.2s;
}

.msb-faq__more:hover {
    opacity: 0.8;
}

.msb-faq__more-ico {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #F4600C;
    border-bottom: 2px solid #F4600C;
    transform: rotate(-45deg);
    position: relative;
    top: -1px;
}

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

/* =====================
   FAQ Item (details)
   ===================== */
.msb-faq__item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* =====================
   Summary / Question
   ===================== */
.msb-faq__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__q::-webkit-details-marker {
    display: none;
}

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

.msb-faq__item[open] .msb-faq__q {
    background-color: #fff;
}

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

.msb-faq__meta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* =====================
   Chevron
   ===================== */
.msb-faq__chev {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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;
}

/* =====================
   Answer — slide animation
   ===================== */
.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: 0;
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
}

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

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

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

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

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

/* =====================
   Floating CTA button
   ===================== */
.msb-faq__floating-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 32px;
    background: #F4600C;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: background-color 0.2s, opacity 0.2s;
    width: 100%;
    text-align: center;
}

.msb-faq__floating-cta:hover {
    background-color: #d94f06;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 767px) {
    .msb-faq__qtext {
        font-size: 15px;
    }

    .msb-faq__a {
        font-size: 14px;
    }

    .msb-faq__floating-cta {
        font-size: 15px;
        padding: 10px 20px;
    }
}
