.faq-category {
    --faq-category-color: #62663D;
    padding: clamp(2.75rem, 2rem + 4vw, 6rem) 0 clamp(4rem, 3rem + 5vw, 7rem);
}

.faq-category__header {
    margin-bottom: clamp(3rem, 2.2rem + 3vw, 5.5rem);
    text-align: center;
}

.faq-category__title {
    margin: 0;
    color: var(--faq-category-color);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.25rem, 1.9rem + 1.5vw, 3.125rem);
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
}

.faq-category__layout {
    align-items: start;
}

.faq-category__navigation-column {
    padding-right: clamp(2rem, 4vw, 4.5rem);
}

.faq-category__categories {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-category__category + .faq-category__category {
    margin-top: 0.45rem;
}

.faq-category__category-link {
    position: relative;
    display: inline-block;
    padding: 0.35rem 0;
    color: var(--faq-category-color);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: color 200ms ease, font-weight 200ms ease;
}

.faq-category__category-link::after {
    position: absolute;
    right: 0;
    bottom: 0.2rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: '';
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 200ms ease, transform 240ms ease;
}

.faq-category__category-link:hover::after,
.faq-category__category-link:focus-visible::after {
    opacity: 0.55;
    transform: scaleX(1);
}

.faq-category__category-link.is-active {
    font-weight: 700;
}

.faq-category__category-link:focus-visible {
    border-radius: 0.125rem;
    outline: 2px solid var(--faq-category-color);
    outline-offset: 0.25rem;
}

.faq-category__articles {
    border-top: 1px solid var(--faq-category-color);
}

.faq-category__item {
    border-bottom: 1px solid var(--faq-category-color);
}

.faq-category__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.125rem, 1rem + 0.6vw, 1.5rem) 0;
    color: var(--faq-category-color);
    cursor: pointer;
    list-style: none;
}

.faq-category__question::-webkit-details-marker {
    display: none;
}

.faq-category__question::marker {
    content: '';
}

.faq-category__question:focus-visible {
    border-radius: 0.125rem;
    outline: 2px solid var(--faq-category-color);
    outline-offset: 0.25rem;
}

.faq-category__question-text {
    color: inherit;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.faq-category__marker {
    position: relative;
    flex: 0 0 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

.faq-category__marker::before,
.faq-category__marker::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1px;
    background: currentColor;
    content: '';
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: opacity 200ms ease, transform 200ms ease;
}

.faq-category__marker::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-category__item[open] .faq-category__marker::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-category__answer {
    max-width: 62rem;
    padding: 0 clamp(2.75rem, 4vw, 4rem) clamp(1.5rem, 1.25rem + 1vw, 2.25rem) 0;
    color: var(--faq-category-color);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
}

.faq-category__answer > :last-child {
    margin-bottom: 0;
}

.faq-category__empty {
    color: var(--faq-category-color);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .faq-category__navigation-column {
        margin-bottom: clamp(2rem, 7vw, 3.5rem);
        padding-right: 0;
    }

    .faq-category__categories {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 1.25rem;
    }

    .faq-category__category + .faq-category__category {
        margin-top: 0;
    }
}

@media (max-width: 575.98px) {
    .faq-category__categories {
        display: block;
    }

    .faq-category__category + .faq-category__category {
        margin-top: 0.2rem;
    }

    .faq-category__answer {
        padding-right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-category__category-link,
    .faq-category__category-link::after,
    .faq-category__marker::before,
    .faq-category__marker::after {
        transition: none;
    }
}

