.faq-page,
.faq-page * {
    box-sizing: border-box;
}

.faq-page {
    background: #ffffff;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
}

.faq-shell {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-intro {
    padding: 34px 0 30px;
    background: #fbfaf7;
    border-bottom: 1px solid #e7e7e4;
}

.faq-eyebrow,
.faq-group-number {
    margin: 0 0 14px;
    color: #008959;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.faq-intro h1 {
    max-width: 760px;
    margin: 0;
    color: #2f2f2f;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.faq-lede {
    max-width: 660px;
    margin: 18px 0 0;
    color: #66645f;
    font-size: 17px;
    line-height: 1.7;
}

.faq-search-wrap {
    max-width: 760px;
    margin-top: 0;
}

.faq-search-label {
    display: block;
    margin: 0 0 9px;
    color: #55534f;
    font-size: 13px;
    font-weight: 600;
}

.faq-search-field {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    background: #ffffff;
    border: 1px solid #d9d9d5;
    border-radius: 4px;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.faq-search-field:focus-within {
    border-color: #008959;
    box-shadow: 0 0 0 3px rgba(5, 221, 166, .12);
}

.faq-search-field svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: none;
    stroke: #77746f;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.faq-search-field input {
    min-width: 0;
    flex: 1 1 auto;
    padding: 16px 0;
    background: transparent;
    border: 0;
    outline: 0;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

.faq-search-field input::placeholder {
    color: #96938d;
}

.faq-search-clear {
    display: none;
    flex: 0 0 auto;
    padding: 7px 4px;
    background: transparent;
    border: 0;
    color: #66645f;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    cursor: pointer;
}

.faq-search-clear.visible {
    display: inline-block;
}

.faq-search-clear:hover {
    color: #008959;
}

.faq-search-status {
    min-height: 20px;
    margin: 9px 0 0;
    color: #77746f;
    font-size: 12px;
}

.faq-content {
    padding: 28px 0 112px;
}

.faq-group {
    display: grid;
    grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
    gap: clamp(44px, 7vw, 112px);
    padding: 70px 0;
    border-bottom: 1px solid #e7e7e4;
}

.faq-group[hidden] {
    display: none !important;
}

.faq-group:last-of-type {
    border-bottom: 0;
}

.faq-page.is-searching .faq-content {
    padding-top: 0;
}

.faq-page.is-searching .faq-group {
    padding-top: 34px;
    padding-bottom: 34px;
}

.faq-group-heading {
    align-self: start;
    position: sticky;
    top: 28px;
}

.faq-group-heading h2 {
    margin: 0;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(22px, 2.1vw, 30px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.faq-group-heading > p:last-child {
    margin: 14px 0 0;
    color: #77746f;
    font-size: 14px;
    line-height: 1.65;
}

.faq-list {
    min-width: 0;
    border-top: 1px solid #d9d9d5;
}

.faq-item {
    border-bottom: 1px solid #d9d9d5;
}

.faq-item[hidden] {
    display: none;
}

.faq-item summary {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 23px 4px;
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    list-style: none;
    cursor: pointer;
}

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

.faq-item summary::after {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    content: '+';
    display: grid;
    place-items: center;
    color: #77746f;
    font-family: Arial, sans-serif;
    font-size: 23px;
    font-weight: 300;
    line-height: 1;
    transition: color 150ms ease, transform 180ms ease;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
    color: #008959;
}

.faq-item summary:focus-visible {
    outline: 2px solid #05dda6;
    outline-offset: 4px;
}

.faq-item[open] summary::after {
    color: #008959;
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 860px;
    padding: 0 56px 28px 4px;
}

.faq-answer p {
    margin: 0;
    color: #65635f;
    font-size: 15px;
    line-height: 1.78;
}

.faq-answer a {
    color: #008959;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    color: #006f48;
}

.faq-empty {
    margin: 72px 0;
    color: #77746f;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 820px) {
    .faq-intro {
        padding: 28px 0 26px;
    }

    .faq-content {
        padding-bottom: 72px;
    }

    .faq-group {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 52px 0;
    }

    .faq-group-heading {
        position: static;
    }

    .faq-group-heading > p:last-child {
        max-width: 560px;
    }
}

@media (max-width: 560px) {
    .faq-shell {
        width: 90%;
    }

    .faq-intro {
        padding: 24px 0 22px;
    }

    .faq-lede {
        font-size: 15px;
    }

    .faq-search-wrap {
        margin-top: 0;
    }

    .faq-search-field {
        min-height: 54px;
    }

    .faq-group {
        padding: 42px 0;
    }

    .faq-item summary {
        min-height: 72px;
        gap: 18px;
        padding: 20px 2px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 38px 24px 2px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}
