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

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

section.river-faq .river-faq__title {
    margin: 0 0 36px;
    padding: 0;
    color: #ede7da;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.1;
    text-align: left;
}

section.river-faq .river-faq__list {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid #413d36;
    list-style: none;
}

section.river-faq .river-faq__item {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-top: 1px solid #413d36;
    border-radius: 0;
    box-shadow: none;
    list-style: none;
}

section.river-faq .river-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 24px 4px;
    color: #ede7da;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

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

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

section.river-faq .river-faq__question-text {
    color: inherit;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    overflow-wrap: anywhere;
    transition: color 180ms ease;
}

section.river-faq .river-faq__question:hover .river-faq__question-text,
section.river-faq .river-faq__item.is-open .river-faq__question-text {
    color: #c6a968;
}

section.river-faq .river-faq__icon {
    display: block;
    flex: 0 0 auto;
    color: #c6a968;
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 260ms ease;
}

section.river-faq .river-faq__item.is-open .river-faq__icon {
    transform: rotate(45deg);
}

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

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

section.river-faq .river-faq__answer-inner {
    max-width: 780px;
    margin: 0;
    padding: 0 44px 24px 4px;
    color: #bdb5a8;
    background: transparent;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    text-align: left;
}

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: inherit;
    font: inherit;
}

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: #c6a968;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

@media (max-width: 767px) {
    section.river-faq {
        width: 100%;
        max-width: 100%;
        margin: 40px auto;
        padding: 0 16px;
    }

    section.river-faq .river-faq__title {
        margin-bottom: 26px;
    }

    section.river-faq .river-faq__question {
        gap: 16px;
        padding: 20px 4px;
    }

    section.river-faq .river-faq__question-text {
        font-size: 21px;
    }

    section.river-faq .river-faq__answer-inner {
        padding: 0 32px 20px 4px;
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (min-width: 768px) {
    html body section.river-faq {
        width: 1000px !important;
        max-width: 1000px !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (max-width: 767px) {
    html body section.river-faq {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 16px !important;
        padding-left: 16px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    section.river-faq .river-faq__answer,
    section.river-faq .river-faq__icon,
    section.river-faq .river-faq__question-text {
        transition: none;
    }
}
