/* River FAQ */
.river-faq,
.river-faq * {
    box-sizing: border-box;
}

section.river-faq {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

section.river-faq .river-faq__title {
    text-align: center;
    margin: 0 0 40px;
    padding: 0;
    font-family: "Playfair Display", Georgia, serif;
    color: #C5A56F;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    background: transparent;
    border: 0;
}

section.river-faq .river-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0;
        width: 740px;
    padding: 0;
    margin: 0;
    list-style: none;
    background: transparent;
}

section.river-faq .river-faq__item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 42%);
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

section.river-faq .river-faq__question {
    width: 100%;
    display: block;
    padding: 28px 16px;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    text-align: center;
    font-family: "Playfair Display", Georgia, serif;
    color: #C5A56F;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.5px;
    text-transform: none;
    text-decoration: none;
    transition: opacity 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

section.river-faq .river-faq__question:hover,
section.river-faq .river-faq__question:focus {
    opacity: 0.85;
    color: #C5A56F;
    background: transparent;
    outline: none;
}

section.river-faq .river-faq__question:focus-visible {
    outline: 2px solid #C5A56F;
    outline-offset: -4px;
}

section.river-faq .river-faq__question-text {
    color: inherit;
    font: inherit;
}

section.river-faq .river-faq__item.is-open .river-faq__question {
    padding-bottom: 16px;
}

section.river-faq .river-faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
}

section.river-faq .river-faq__answer[hidden] {
    display: none;
}

section.river-faq .river-faq__item.is-open .river-faq__answer {
    max-height: none;
}

section.river-faq .river-faq__answer-inner {
    padding: 0 16px 28px;
    text-align: center;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
    background: transparent;
}

section.river-faq .river-faq__answer-inner p,
section.river-faq .river-faq__answer-inner span,
section.river-faq .river-faq__answer-inner li {
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

section.river-faq .river-faq__answer-inner > *:first-child {
    margin-top: 0;
}

section.river-faq .river-faq__answer-inner > *:last-child {
    margin-bottom: 0;
}

section.river-faq .river-faq__answer-inner a {
    color: #C5A56F;
    text-decoration: underline;
}

.river-faq__empty {
    text-align: center;
    color: #C5A56F;
    font-family: "Poppins", sans-serif;
    padding: 24px;
}

@media (max-width: 600px) {
    section.river-faq {
        margin: 40px auto;
    }

    section.river-faq .river-faq__question {
        padding: 20px 12px;
        font-size: 1.35rem;
        letter-spacing: 0.25px;
    }

    section.river-faq .river-faq__answer-inner {
        padding: 0 12px 20px;
        font-size: 0.95rem;
    }
}
