
button {
    font-family: inherit;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
}

section.band {
    padding: 96px 0;
}

.section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

    .section-head h2 {
        font-weight: 700;
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -.015em;
        margin: 14px 0 16px;
        width:100%;
    }

    .section-head p {
        font-size: 18px;
        margin: 0;
    }

.center {
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.faq-wrap {
    max-width: 880px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.3;
}

    .faq-q:hover {
        color: var(--orange);
    }

    .faq-q .ic {
        width: 34px;
        height: 34px;
        border: 1px solid var(--ink);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: 24px;
        transition: background .2s ease,color .2s ease,border-color .2s ease,transform .25s ease;
    }

.faq-item.open .faq-q .ic {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--brown-900);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease,padding .35s ease;
    font-size: 16px;
    line-height: 1.65;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding: 0 0 28px;
    padding-right: 60px;
}

@media (max-width: 980px) {
    .section-head h2 {
        font-size: 32px;
    }
}
