.faq-section {
    background: var(--soft, #f5f7fb);
    padding-bottom: 72px;
}

.faq-empty {
    margin: 0;
    padding: 28px;
    border-radius: 14px;
    border: 1px dashed var(--line, #e5e9f0);
    background: #fff;
    color: var(--muted, #647084);
    text-align: center;
    line-height: 1.65;
}

.faq-empty a {
    color: var(--cms-primary, #284cd8);
    font-weight: 700;
    text-decoration: none;
}

.faq-empty a:hover {
    text-decoration: underline;
}

.faq-block + .faq-block {
    margin-top: 42px;
}

.faq-block__head {
    max-width: 860px;
    margin: 0 auto 22px;
    text-align: center;
}

.faq-block__head h2 {
    margin: 0 0 10px;
    color: var(--navy, #10233f);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.faq-block__intro {
    margin: 0;
    color: var(--muted, #647084);
    line-height: 1.65;
}

.faq-block--experiences .faq-block__head {
    padding-top: 8px;
    border-top: 1px solid var(--line, #e5e9f0);
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line, #e5e9f0);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(16, 35, 63, 0.06);
}

.faq-item__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--ink, #202735);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-item__trigger:hover,
.faq-item__trigger[aria-expanded="true"] {
    color: var(--cms-primary, #284cd8);
}

.faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faq-item__icon::before {
    width: 14px;
    height: 2px;
}

.faq-item__icon::after {
    width: 2px;
    height: 14px;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-item__panel {
    border-top: 1px solid var(--line, #e5e9f0);
}

.faq-item__answer {
    padding: 0 22px 22px;
}

.faq-item__answer p {
    margin: 0;
    color: var(--muted, #647084);
    line-height: 1.7;
}

.faq-item__meta {
    margin-top: 14px !important;
    font-size: 0.88rem;
    color: var(--muted, #647084);
}

.faq-item__meta strong {
    color: var(--ink, #202735);
}

.faq-item__source {
    margin-top: 14px !important;
}

.faq-item__source a {
    color: var(--cms-primary, #284cd8);
    font-weight: 700;
    text-decoration: none;
}

.faq-item__source a:hover {
    text-decoration: underline;
}

.faq-cta {
    margin-top: 36px;
    padding: 28px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--line, #e5e9f0);
    text-align: center;
}

.faq-cta p {
    margin: 0 0 16px;
    color: var(--muted, #647084);
}