.home-faq {
    padding: clamp(64px, 7vw, 108px) 24px;
    background-color: #fcfcfb;
    color: #241d19;
}

.home-faq__inner {
    width: min(100%, 1400px);
    margin-inline: auto;
}

.home-faq__heading {
    margin: 0 0 clamp(38px, 4vw, 58px);
    /* color: #000000; */
    /* font-family: "Noto Sans", sans-serif; */
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.035em;
    text-align: center;
    text-transform: none;
}

.home-faq__list {
    border-bottom: 1px solid rgba(78, 57, 45, .15);
}

.home-faq__item {
    border-top: 1px solid rgba(78, 57, 45, .15);
}

.home-faq__item.is-open {
    border-top-color: transparent;
}

.home-faq__question-heading {
    margin: 0;
    font: inherit;
}

.home-faq__question {
    width: 100%;
    min-height: 64px;
    padding: 17px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font: inherit;
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 500;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
    transition: background-color .2s ease;
}

.home-faq__question:hover,
.home-faq__question:focus-visible {
    background: rgba(222, 208, 198, .55) !important;
}

.home-faq__question:focus-visible {
    outline: 2px solid #8f725e;
    outline-offset: -2px;
}

.home-faq__question {
    background-color: #f2ece7 !important;
}

.home-faq__item.is-open .home-faq__question {
    background: #ded0c6 !important;
}

.home-faq__icon {
    width: 0;
    height: 0;
    border-right: 7px solid transparent;
    border-bottom: 11px solid #a18d82;
    border-left: 7px solid transparent;
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.home-faq__question[aria-expanded="false"] .home-faq__icon {
    transform: rotate(180deg);
}

.home-faq__answer {
    padding: 24px;
    background: #fff;
}

.home-faq__answer[hidden] {
    display: none;
}

.home-faq__answer p {
    max-width: 1120px;
    margin: 0;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.75;
}

.home-faq__footer {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 640px) {
    .home-faq {
        padding-inline: 16px;
    }

    .home-faq__question {
        min-height: 58px;
        padding-inline: 12px;
    }

    .home-faq__answer {
        padding: 20px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-faq__icon {
        transition: none;
    }
}
