.faq_hero_icon {
    width: clamp(3rem, 9vw, 6.5rem);
    aspect-ratio: 1;
}

.page_hero_inner h1 {
    color: #0996e2;
    font-family: "Rounded Mplus 1c", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.faq_content {
    padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.faq_intro {
    margin: 0;
    color: #231815;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.65;
}

.faq_list {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(3rem, 6vw, 4.5rem);
}

.faq_item {
    overflow: hidden;
    border-radius: 0.75rem;
    background: #fbf6ec;
}

.faq_item summary {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) 1.25rem;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    min-height: clamp(4.5rem, 7vw, 5.75rem);
    padding: clamp(1.1rem, 2vw, 1.65rem) clamp(1.25rem, 2.5vw, 2rem);
    cursor: pointer;
    list-style: none;
    color: #0996e2;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    font-weight: 500;
    line-height: 1.5;
}

.faq_item summary::-webkit-details-marker {
    display: none;
}

.faq_item summary::before {
    color: #0996e2;
    content: 'Q.';
    font-family: "Open Sans", sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 600;
}

.faq_item summary::after {
    justify-self: end;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: '';
    transform: rotate(45deg) translate(-0.15rem, -0.15rem);
    transition: transform 0.2s ease;
}

.faq_item[open] summary::after {
    transform: rotate(225deg) translate(-0.15rem, -0.15rem);
}

.faq_item > div {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin: 0 clamp(1.25rem, 2.5vw, 2rem);
    padding: clamp(1.1rem, 2vw, 1.5rem) 0 clamp(1.5rem, 2.5vw, 2rem);
    border-top: 1px solid #6f675d;
}

.faq_item > div::before {
    color: #eb585a;
    content: 'A.';
    font-family: "Open Sans", sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 600;
}

.faq_item p {
    padding-top: 0.2rem;
    color: #231815;
    font-size: 1rem;
    line-height: 1.8;
}

.faq_item a {
    color: #0996e2;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

@media screen and (max-width: 640px) {
    .faq_item summary {
        grid-template-columns: 1.75rem minmax(0, 1fr) 1rem;
        gap: 0.65rem;
        min-height: 4.25rem;
        padding: 1rem;
    }

    .faq_item > div {
        grid-template-columns: 1.75rem minmax(0, 1fr);
        gap: 0.65rem;
        margin: 0 1rem;
        padding: 1rem 0 1.25rem;
    }
}
