

/* Start:/faq/style.css?17888658645368*/
.container.container--default.faq-page {
    padding-top: 4rem;
}

.faq-page .faq-section {
    display: grid;
    grid-template-columns: minmax(220px, .75fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: start;
}

.faq-page .faq-section__intro {
    position: sticky;
    top: 120px;
    min-width: 0;
}

.faq-page .faq-section__eyebrow {
    margin-bottom: .45rem;
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--burg, #7a1f3d);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.faq-page .faq-section__title {
    margin: 0 0 .75rem;
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text, #24141b);
}

.faq-page .faq-section__description {
    max-width: 36rem;
    margin: 0;
    font-family: var(--ff-body, "Nunito Sans", "Nunito", system-ui, sans-serif);
    font-size: .92rem;
    line-height: 1.65;
    color: var(--muted, #76656d);
}

.faq-page .faq-section__note {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border, rgba(122, 31, 61, .16));
    font-family: var(--ff-body, "Nunito Sans", "Nunito", system-ui, sans-serif);
    font-size: .78rem;
    line-height: 1.5;
    color: var(--muted, #76656d);
}

.faq-page .faq-section__list {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    min-width: 0;
}

.faq-page .faq-item {
    overflow: hidden;
    background: var(--white, #fff);
    border: 1px solid var(--border, rgba(122, 31, 61, .16));
    border-radius: var(--r, 16px);
    box-shadow: var(--shadow-sm, 0 8px 24px rgba(122, 31, 61, .08));
    transition: border-color var(--t, .2s ease), box-shadow var(--t, .2s ease);
}

.faq-page .faq-item:hover {
    border-color: rgba(139, 26, 74, .28);
}

.faq-page .faq-item[open] {
    border-color: rgba(139, 26, 74, .35);
    box-shadow: var(--shadow-md, 0 14px 34px rgba(122, 31, 61, .12));
}

.faq-page .faq-item__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 58px;
    padding: .9rem 1rem;
    list-style: none;
    cursor: pointer;
    user-select: none;
    font-family: var(--ff, "Nunito", "Nunito Sans", system-ui, sans-serif);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text, #24141b);
    transition: color var(--t, .2s ease), background var(--t, .2s ease);
}

.faq-page .faq-item__summary::-webkit-details-marker {
    display: none;
}

.faq-page .faq-item__summary::marker {
    display: none;
    content: '';
}

.faq-page .faq-item__summary:hover,
.faq-page .faq-item[open] .faq-item__summary {
    color: var(--burg, #7a1f3d);
    background: var(--bg-light, #faf7f8);
}

.faq-page .faq-item__summary:focus-visible {
    outline: 3px solid rgba(139, 26, 74, .14);
    outline-offset: -3px;
}

.faq-page .faq-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1px solid var(--border, rgba(122, 31, 61, .16));
    border-radius: 50%;
    color: var(--burg, #7a1f3d);
    background: var(--white, #fff);
    transition: transform var(--t, .2s ease), border-color var(--t, .2s ease), background var(--t, .2s ease);
}

.faq-page .faq-item__icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-page .faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
    border-color: var(--burg, #7a1f3d);
    background: rgba(139, 26, 74, .05);
}

.faq-page .faq-item__content {
    padding: 0 1rem 1rem;
    font-family: var(--ff-body, "Nunito Sans", "Nunito", system-ui, sans-serif);
    font-size: .88rem;
    line-height: 1.7;
    color: var(--muted, #76656d);
}

.faq-page .faq-item__content::before {
    content: '';
    display: block;
    height: 1px;
    margin-bottom: .85rem;
    background: var(--border, rgba(122, 31, 61, .16));
}

.faq-page .faq-item__content p {
    margin: 0 0 .75rem;
}

.faq-page .faq-item__content p:last-child {
    margin-bottom: 0;
}

.faq-page .faq-item__content a {
    color: var(--burg, #7a1f3d);
    text-decoration: underline;
    text-decoration-color: rgba(122, 31, 61, .35);
    text-underline-offset: 3px;
}

.faq-page .faq-item__content a:hover {
    color: var(--burg-d, #64172f);
    text-decoration-color: currentColor;
}

@media (max-width: 768px) {
    .container.container--default.faq-page {
        padding-top: 2.2rem;
    }

    .faq-page .faq-section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .faq-page .faq-section__intro {
        position: static;
    }

    .faq-page .faq-section__note {
        margin-top: .75rem;
        padding-top: .75rem;
    }
}

@media (max-width: 480px) {
    .faq-page .faq-section {
        gap: 1rem;
    }

    .faq-page .faq-item__summary {
        min-height: 54px;
        padding: .8rem .85rem;
        font-size: .84rem;
    }

    .faq-page .faq-item__content {
        padding: 0 .85rem .85rem;
        font-size: .84rem;
    }

    .faq-page .faq-item__icon {
        width: 26px;
        height: 26px;
    }
}

/* End */
/* /faq/style.css?17888658645368 */
