.hn-page-faqs {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 1.5rem 6rem;
    background:
        radial-gradient(circle at 50% 8%, rgba(255, 184, 0, .045), transparent 24rem),
        #030405;
    color: #fff;
}

.hn-page-faqs::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, .07) .7px, transparent .9px);
    background-size: 88px 88px, 88px 88px, 8px 8px;
    opacity: .24;
    pointer-events: none;
}

.hn-page-faqs .hn-section__inner {
    position: relative;
    z-index: 1;
    width: min(var(--container-wide), 100%);
}

.hn-page-faqs .hn-section-label {
    display: none;
}

.hn-page-faqs .hn-section__inner .hn-section-intro {
    max-width: 1100px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hn-page-faqs .hn-section__inner .hn-section-intro h2 {
    max-width: none;
    margin: 0;
    color: #f7f7f5;
    font-size: 4.65rem;
    line-height: 1.04;
    text-transform: none;
    text-shadow: 0 5px 20px rgba(0, 0, 0, .45);
}

.hn-page-faqs .hn-section__inner .hn-section-intro h2 span {
    color: #ffb800;
}

.hn-page-faqs .hn-section__inner .hn-section-intro p {
    max-width: 700px;
    margin: 1.35rem auto 0;
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    line-height: 1.55;
}

.hn-page-faqs .hn-section__inner .hn-section-intro p::after {
    content: "";
    display: block;
    width: 3.5rem;
    height: 2px;
    margin: 1.3rem auto 0;
    background: #ffb800;
}

.hn-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 2rem;
    align-items: start;
}

.hn-page-faqs--single .hn-faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
}

.hn-faq-list details {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 20%, rgba(255, 184, 0, .04), transparent 11rem),
        linear-gradient(112deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .012));
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22), 0 10px 22px -18px rgba(255, 184, 0, .85);
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.hn-faq-list details::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, .82), transparent);
    opacity: .72;
}

.hn-faq-list details:hover,
.hn-faq-list details:focus-within,
.hn-faq-list details[open] {
    border-color: rgba(255, 184, 0, .5);
    background:
        radial-gradient(circle at 92% 20%, rgba(255, 184, 0, .075), transparent 12rem),
        linear-gradient(112deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
    box-shadow: 0 22px 50px rgba(0, 0, 0, .3), 0 14px 28px -20px rgba(255, 184, 0, .95);
}

.hn-faq-list summary {
    position: relative;
    display: flex;
    min-height: 116px;
    gap: 1.25rem;
    align-items: center;
    padding: 1.65rem 6rem 1.65rem 2.2rem;
    cursor: pointer;
    color: #f4f4f2;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.05;
    list-style: none;
}

.hn-faq-list summary::-webkit-details-marker {
    display: none;
}

.hn-faq-list summary::marker {
    content: "";
}

.hn-faq-list summary:focus-visible {
    outline: 2px solid #ffb800;
    outline-offset: -4px;
}

.hn-faq-toggle {
    position: absolute;
    top: 50%;
    right: 2rem;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid #ffb800;
    border-radius: 50%;
    background: rgba(255, 184, 0, .025);
    box-shadow: 0 0 18px rgba(255, 184, 0, .08);
    transform: translateY(-50%);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.hn-faq-toggle img {
    position: absolute;
    width: 27px;
    height: 27px;
    transition: opacity .25s ease;
}

.hn-faq-toggle__minus {
    opacity: 0;
}

.hn-faq-list details[open] .hn-faq-toggle {
    background: rgba(255, 184, 0, .09);
    box-shadow: 0 0 24px rgba(255, 184, 0, .15);
    transform: translateY(-50%) rotate(180deg);
}

.hn-faq-list details[open] .hn-faq-toggle__plus {
    opacity: 0;
}

.hn-faq-list details[open] .hn-faq-toggle__minus {
    opacity: 1;
}

.hn-faq-list details.is-closing .hn-faq-toggle {
    transform: translateY(-50%) rotate(0);
}

.hn-faq-list details.is-closing .hn-faq-toggle__plus {
    opacity: 1;
}

.hn-faq-list details.is-closing .hn-faq-toggle__minus {
    opacity: 0;
}

.hn-faq-answer {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hn-faq-motion .hn-faq-answer {
    display: block;
    height: 0;
    border-top-color: transparent;
    opacity: 0;
    transition: height .25s cubic-bezier(.4, 0, .2, 1), border-color .25s ease, opacity .25s ease;
}

.hn-faq-motion .hn-faq-list details[open] .hn-faq-answer {
    border-top-color: rgba(255, 255, 255, .1);
    opacity: 1;
}

.hn-faq-motion .hn-faq-list details.is-closing .hn-faq-answer {
    border-top-color: transparent;
    opacity: 0;
}

.hn-faq-answer p,
.hn-faq-list > details > p {
    max-width: 780px;
    margin: 0;
    padding: 1.35rem 2.2rem 1.65rem;
    color: rgba(255, 255, 255, .7);
    font-size: .98rem;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .hn-page-faqs .hn-section__inner .hn-section-intro h2 {
        font-size: 3.8rem;
    }

    .hn-faq-list {
        gap: 1.25rem;
    }

    .hn-faq-list summary {
        min-height: 104px;
        padding: 1.4rem 5rem 1.4rem 1.5rem;
        font-size: 1.25rem;
    }

    .hn-faq-toggle {
        right: 1.4rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 720px) {
    .hn-page-faqs {
        padding: 4rem 1rem 4.5rem;
    }

    .hn-page-faqs .hn-section__inner .hn-section-intro {
        margin-bottom: 2.25rem;
    }

    .hn-page-faqs .hn-section__inner .hn-section-intro h2 {
        font-size: 3rem;
    }

    .hn-page-faqs .hn-section__inner .hn-section-intro p {
        font-size: .98rem;
    }

    .hn-faq-list,
    .hn-page-faqs--single .hn-faq-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 430px) {
    .hn-page-faqs {
        padding-inline: .5rem;
    }

    .hn-page-faqs .hn-section__inner .hn-section-intro {
        padding-inline: .5rem;
    }

    .hn-page-faqs .hn-section__inner .hn-section-intro h2 {
        font-size: 2.55rem;
    }

    .hn-faq-list summary {
        min-height: 94px;
        padding: 1.25rem 4.5rem 1.25rem 1.2rem;
        font-size: 1.15rem;
    }

    .hn-faq-toggle {
        right: 1.05rem;
        width: 40px;
        height: 40px;
    }

    .hn-faq-toggle img {
        width: 24px;
        height: 24px;
    }

    .hn-faq-answer p,
    .hn-faq-list > details > p {
        padding: 1.15rem 1.2rem 1.4rem;
        font-size: .92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hn-faq-list details,
    .hn-faq-toggle,
    .hn-faq-answer {
        transition: none;
    }
}
