/* ==========================================================================
   ACF Block: FAQs
   ========================================================================== */

.acf-block-faqs {
    padding: 6rem 0;
    background-color: #ffffff;
}

.acf-block-faqs__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.acf-block-faqs__header {
    text-align: center;
    margin-bottom: 4rem;
}

.acf-block-faqs__subheadline-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.acf-block-faqs__subheadline-line {
    width: 40px;
    height: 3px;
    background-color: #E0701F;
}

.acf-block-faqs__subheadline {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E0701F;
}

.acf-block-faqs__heading {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #0C1B3A;
    margin-bottom: 0;
}

.acf-block-faqs__list {
    border-top: 1px solid #E2E8F0;
}

.acf-block-faqs__item {
    border-bottom: 1px solid #E2E8F0;
}

.acf-block-faqs__item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0C1B3A;
    cursor: pointer;
    list-style: none;
}

.acf-block-faqs__item-title::-webkit-details-marker {
    display: none;
}

.acf-block-faqs__item-icon {
    width: 24px;
    height: 24px;
    color: #E0701F;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

details[open] .acf-block-faqs__item-icon {
    transform: rotate(180deg);
}

.acf-block-faqs__item-content {
    padding: 0 0 2rem 0;
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.6;
}

.acf-block-faqs__item-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .acf-block-faqs {
        padding: 4rem 0;
    }
    
    .acf-block-faqs__heading {
        font-size: 2.25rem;
    }
}
