.azur-faq {
    width: 100%;
    box-sizing: border-box;
    color: #1f2933;
    --azur-faq-columns: 2;
}

.azur-faq *,
.azur-faq *::before,
.azur-faq *::after {
    box-sizing: border-box;
}

.azur-faq__inner {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.azur-faq__grid {
    display: grid;
    grid-template-columns: repeat(var(--azur-faq-columns, 2), minmax(0, 1fr));
    align-items: start;
    column-gap: 24px;
    row-gap: 0;
    width: 100%;
}

.azur-faq__column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.azur-faq__column:empty {
    display: none;
}

.azur-faq__item {
    min-width: 0;
    overflow: hidden;
    border: 1px solid transparent;
    background: #f7f7f7;
}

.azur-faq__item + .azur-faq__item {
    margin-top: 0;
}

.azur-faq__question-heading {
    margin: 0;
    padding: 0;
    font: inherit;
}

.azur-faq__question {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 76px;
    padding: 22px 28px;
    border: 0;
    background: #f7f7f7;
    color: #1f2933;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .06em;
    text-align: left;
    text-transform: uppercase;
    transition: background-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.azur-faq__question:hover,
.azur-faq__question:focus-visible {
    outline: none;
}

.azur-faq__item.is-open .azur-faq__question {
    background: linear-gradient(135deg, #e8aa08 0%, #ff9824 100%);
    color: #fff;
}

.azur-faq__item-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: currentColor;
    line-height: 1;
}

.azur-faq__item-icon svg,
.azur-faq__toggle-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.azur-faq__question-text {
    min-width: 0;
}

.azur-faq__toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding-left: 16px;
    color: currentColor;
    line-height: 1;
}

.azur-faq__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    line-height: 1;
}

.azur-faq__toggle-icon--opened {
    display: none;
}

.azur-faq__item.is-open .azur-faq__toggle-icon--closed {
    display: none;
}

.azur-faq__item.is-open .azur-faq__toggle-icon--opened {
    display: inline-flex;
}

.azur-faq__answer {
    background: #fff;
    color: #5f6975;
    font-size: 16px;
    line-height: 1.65;
}

.azur-faq__answer[hidden] {
    display: none;
}

.azur-faq__answer-inner {
    padding: 26px 28px 30px;
}

.azur-faq__answer-inner > *:first-child {
    margin-top: 0;
}

.azur-faq__answer-inner > *:last-child {
    margin-bottom: 0;
}

.azur-faq__answer-inner p {
    margin: 0 0 1em;
}

.azur-faq__cta {
    margin-top: 36px;
    text-align: center;
}

.azur-faq__cta-text,
.azur-faq__cta-link {
    display: inline;
    font-size: 18px;
    line-height: 1.5;
}

.azur-faq__cta-text {
    color: #1f2933;
}

.azur-faq__cta-link {
    color: #d89700;
    text-decoration: none;
    transition: color .2s ease;
}

.azur-faq__cta-text + .azur-faq__cta-link {
    margin-left: .35em;
}

.azur-faq__cta-link--static {
    cursor: default;
}

@media (max-width: 767px) {
    .azur-faq {
        --azur-faq-columns: 1;
    }

    .azur-faq__grid {
        grid-template-columns: 1fr;
    }

    .azur-faq__question {
        min-height: 64px;
        padding: 18px 20px;
    }

    .azur-faq__answer-inner {
        padding: 20px;
    }
}
