.pantheon-product-faq {
    --ppfaq-accent: #bd2633;
    --ppfaq-text: #101010;
    --ppfaq-border: #cfcfcf;
    max-width: 780px;
    margin: 80px auto;
    padding: 0 20px;
    color: var(--ppfaq-text);
}

.pantheon-product-faq__ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
}

.pantheon-product-faq__ornament::before,
.pantheon-product-faq__ornament::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #c69b53;
}

.pantheon-product-faq__ornament span {
    width: 14px;
    height: 14px;
    border: 2px solid #c69b53;
    transform: rotate(45deg);
    box-shadow: 0 0 0 3px #fff, 0 0 0 4px #c69b53;
}

.pantheon-product-faq__title {
    margin: 0 0 48px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pantheon-product-faq__items {
    border-top: 1px solid var(--ppfaq-border);
}

.pantheon-product-faq__item {
    border-bottom: 1px solid var(--ppfaq-border);
}

.pantheon-product-faq__question-heading {
    margin: 0;
}

.pantheon-product-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.pantheon-product-faq__question:hover,
.pantheon-product-faq__question:focus {
    color: var(--ppfaq-accent);
}

.pantheon-product-faq__question:focus-visible {
    outline: 2px solid var(--ppfaq-accent);
    outline-offset: 4px;
}

.pantheon-product-faq__icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ppfaq-accent);
    color: #fff;
}

.pantheon-product-faq__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
}

.pantheon-product-faq__item.is-open .pantheon-product-faq__icon svg {
    transform: rotate(180deg);
}

.pantheon-product-faq__answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height .42s cubic-bezier(.4, 0, .2, 1), opacity .28s ease;
    will-change: height, opacity;
}

.pantheon-product-faq__answer-inner {
    padding: 0 52px 24px 0;
    font-size: 18px;
    line-height: 1.55;
}

.pantheon-product-faq__answer-inner > :first-child {
    margin-top: 0;
}

.pantheon-product-faq__answer-inner > :last-child {
    margin-bottom: 0;
}

.pantheon-product-faq__footer {
    margin-top: 34px;
    text-align: center;
}

.pantheon-product-faq__all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    border: 2px solid var(--ppfaq-accent);
    border-radius: 4px;
    background: var(--ppfaq-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.pantheon-product-faq__all-link:hover,
.pantheon-product-faq__all-link:focus {
    background: transparent;
    color: var(--ppfaq-accent);
    text-decoration: none;
}

.pantheon-product-faq__all-link:focus-visible {
    outline: 2px solid var(--ppfaq-accent);
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .pantheon-product-faq {
        margin: 56px auto;
        padding: 0 16px;
    }

    .pantheon-product-faq__ornament {
        margin-bottom: 34px;
    }

    .pantheon-product-faq__title {
        margin-bottom: 32px;
        font-size: 30px;
    }

    .pantheon-product-faq__question {
        gap: 16px;
        padding: 18px 0;
        font-size: 17px;
    }

    .pantheon-product-faq__icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .pantheon-product-faq__answer-inner {
        padding: 0 0 20px;
        font-size: 16px;
    }

    .pantheon-product-faq__footer {
        margin-top: 28px;
    }

    .pantheon-product-faq__all-link {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pantheon-product-faq__answer,
    .pantheon-product-faq__icon svg {
        transition: none;
    }
}
