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

.gh-faq {
    width: 100%;
    background: #fff;
}

.gh-faq__inner {
    width: 100%;
    margin: 0 auto;
}

.gh-faq__heading {
    margin: 0;
    color: #171717;
    font-family: "Tungsten", "Arial Narrow", sans-serif;
    font-size: clamp(42px, 4vw, 68px);
    line-height: .95;
    font-weight: 700;
    text-transform: uppercase;
}

.gh-faq__divider {
    display: block;
    width: 56px;
    height: 4px;
    margin: 18px 0 22px;
    background: #ef3123;
}

.gh-faq__intro {
    max-width: 760px;
    margin-bottom: 30px;
    color: #343434;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.55;
}

.gh-faq__items {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.gh-faq__item {
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.gh-faq__item:last-child {
    border-bottom: 0;
}

.gh-faq__item summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 62px;
    cursor: pointer;
    list-style: none;
}

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

.gh-faq__qmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: #050505;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.gh-faq__question {
    color: #171717;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.gh-faq__plus {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    color: #ef3123;
    font-size: 28px;
}

.gh-faq__plus::before,
.gh-faq__plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: .72em;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.gh-faq__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.gh-faq__item[open] .gh-faq__plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.gh-faq__answer {
    color: #444;
    font-family: "Titillium Web", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.gh-faq__answer p:first-child {
    margin-top: 0;
}

.gh-faq__answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .gh-faq__item summary {
        gap: 12px;
        min-height: 70px;
    }

    .gh-faq__intro {
        margin-bottom: 22px;
    }
}
