/* cb-faq.css — FAQ: image left + accordion right */
.cb-faq {
    background-color: var(--color-white, #fff);
    padding-block: 80px;
    padding-inline: var(--gutter);
}
.cb-faq__inner {
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.cb-faq__image-wrap {
    flex: 1 1 0;
    min-width: 0;
    max-width: 560px;
    height: 700px;
    margin: 0;
    overflow: hidden;
}
.cb-faq__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--image-hover-duration, 0.5s) var(--image-hover-ease, ease);
}

.cb-faq__image-wrap:hover .cb-faq__image {
    transform: scale(var(--image-hover-scale, 1.03));
}
.cb-faq__content {
    flex: 1 1 0;
    min-width: 0;
    max-width: 675px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.cb-faq__header {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.cb-faq__eyebrow {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-dark, #1c1c1c);
}
.cb-faq__heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-dark, #1c1c1c);
    margin: 0;
    overflow-wrap: break-word;
}
.cb-faq__accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0,0,0,0.15);
}
.cb-faq__item { border-bottom: 1px solid rgba(0,0,0,0.15); }
.cb-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark, #1c1c1c);
}
.cb-faq__icon { flex-shrink: 0; display: flex; align-items: center; transition: transform 0.2s; }
.cb-faq__item.is-open .cb-faq__icon { transform: rotate(45deg); }
.cb-faq__answer[hidden] { display: none; }
.cb-faq__answer-inner {
    padding-bottom: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.39;
    color: var(--color-dark, #1c1c1c);
}
.cb-faq__answer-inner p { margin: 0 0 12px; }
.cb-faq__answer-inner p:last-child { margin-bottom: 0; }
/* Laptop / tablet proportional */
@media (max-width: 1200px) {
    .cb-faq__image-wrap {
        flex: 1 1 44%;
        max-width: none;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .cb-faq__content {
        flex: 1 1 52%;
        max-width: none;
    }

    .cb-faq__image-wrap,
    .cb-faq__content {
        min-width: 0;
    }
}
/* Stack (≤ 900px) */
@media (max-width: 900px) {
    .cb-faq__inner {
        flex-direction: column;
        gap: 40px;
    }

    .cb-faq__image-wrap,
    .cb-faq__content {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}
/* Mobile */
@media (max-width: 639px) {
    .cb-faq { padding-block: 80px; padding-inline: 16px; }
    .cb-faq__inner { flex-direction: column; gap: 40px; }
    .cb-faq__image-wrap { flex: none; width: 100%; height: auto; aspect-ratio: 358/448; }
    .cb-faq__heading { font-size: 2rem; line-height: 1; }
    .cb-faq__content { flex: none; width: 100%; }
}
