.faq-wrp {
    width: 100%;
    padding: var(--space-xl) 4vw;
    color: var(--module-text, var(--color-gray-5));
    background-color: var(--module-background, var(--color-white));
}

.faq {
    width: 100%;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    color: currentColor;
}

.faq-head {
    width: 100%;
    max-width: 850px;
    margin-bottom: var(--space-l);
}

.faq-title {
    margin-bottom: var(--space-s);
}

.faq-intro {
    color: currentColor;
}

.faq-intro > *:last-child {
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-s);
    width: 100%;
    padding-top: var(--space-s);
    padding-bottom: var(--space-s);
    color: currentColor;
    font-family: var(--font-body);
    font-size: var(--typo-body-fs);
    line-height: var(--typo-body-lh);
    font-weight: 400;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: "";
}



.faq-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.faq-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.faq-question-text {
    display: block;
}

.faq-answer {
    max-width: 850px;
    height: 0;
    overflow: hidden;
    color: currentColor;
    font-family: var(--font-body);
    font-size: var(--typo-body-fs);
    line-height: var(--typo-body-lh);
    transition: height 0.4s ease;
}

.faq-answer-inner {
    padding-bottom: var(--space-m);
    padding-left: calc(24px + var(--space-s));
}

.faq-answer-inner > *:last-child {
    margin-bottom: 0;
}

.faq-question:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

@media (max-width: 768px) {
    .faq-wrp {
        padding-top: var(--space-l);
        padding-bottom: var(--space-l);
    }

    .faq-head {
        margin-bottom: var(--space-m);
    }

    .faq-question {
        gap: var(--space-s);
    }

    .faq-answer-inner {
        padding-left: calc(24px + var(--space-s));
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 4px solid var(--color-border-light);
}

.faq-item {
    width: 100%;
    border-bottom: 4px solid var(--color-border-light);
}

.faq-icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 13px;
    height: 25px;
    background-color: var(--color-border-light);
    mask-image: url("../img/arrow-down.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/arrow-down.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transform: rotate(0deg);
    transition:
        transform 0.35s ease,
        background-color 0.35s ease;
}

.faq-icon {
    transition:
        transform 0.4s ease,
        background-color 0.4s ease;
}

.faq-item.is-open .faq-icon {
    background-color: var(--color-gray-5);
    transform: rotate(-90deg);
}