/* Horizon FAQ Accordion Block */
.horizon_faq_wrapper {
    padding: 50px 0;
}
.horizon_faq_content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}
.horizon_faq_width_full .horizon_faq_content {
    max-width: 1600px;
}
.horizon_faq_width_large .horizon_faq_content {
    max-width: 1100px;
}
.horizon_faq_width_90 .horizon_faq_content {
    max-width: 90%;
}
.horizon_faq_heading {
    font-family: 'Libre Caslon Text', serif;
    font-size: 37.4px;
    font-weight: 400;
    color: #0c2030;
    margin-bottom: 30px;
}
.horizon_faq_item {
    border-bottom: 1px solid rgba(12, 32, 48, 0.12);
}
.horizon_faq_item:last-child {
    border-bottom: none;
}
.horizon_faq_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}
.horizon_faq_question:hover {
    opacity: 0.85;
}
.horizon_faq_question h3 {
    font-family: 'Libre Caslon Text', serif;
    font-size: 20px;
    font-weight: 400;
    color: #0c2030;
    line-height: 1.35;
    flex: 1;
    margin: 0;
    padding: 0;
}
.horizon_faq_toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #4cafc9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.horizon_faq_toggle svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    transition: transform 0.3s ease;
}
.horizon_faq_item.open .horizon_faq_toggle {
    background: #0c2030;
}
.horizon_faq_item.open .horizon_faq_toggle svg {
    transform: rotate(180deg);
}
.horizon_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.horizon_faq_item.open .horizon_faq_answer {
    max-height: 500px;
}
.horizon_faq_answer p {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #1d1d1d;
    padding: 0 0 22px 0;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .horizon_faq_content {
        padding: 0 24px;
    }
    .horizon_faq_heading {
        font-size: 28px;
    }
    .horizon_faq_question h3 {
        font-size: 17px;
    }
}

/* Editor preview */
.acf-block-preview .horizon_faq_wrapper {
    pointer-events: none;
}
