.help-page {
    min-height: 60vh;
}

.help-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.help-content {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
}

.help-heading {
    max-width: 760px;
    margin-bottom: 1.75rem;
}

.help-search {
    max-width: 760px;
    margin-bottom: 1rem;
}

.help-search label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.help-search__input {
    width: 100%;
    min-height: 50px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--rv-line);
    border-radius: 12px;
    background: var(--rv-card);
    color: var(--rv-text);
    font: inherit;
}

.help-search__input:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 2px;
}

.help-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 0 1rem;
}

.help-filter {
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--rv-line);
    border-radius: 999px;
    background: var(--rv-card);
    color: var(--rv-text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.help-filter:hover,
.help-filter.is-active {
    border-color: currentColor;
}

.help-filter.is-active {
    box-shadow: inset 0 0 0 1px currentColor;
}

.help-filter:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 2px;
}

.help-result-count {
    min-height: 1.5em;
    margin: 0 0 1rem;
    color: var(--rv-muted);
}

.help-faq-item[hidden] {
    display: none;
}

.help-empty {
    max-width: 760px;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--rv-line);
    border-radius: 16px;
    background: var(--rv-card);
}

.help-empty h3 {
    margin-top: 0;
}

.help-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.help-contact > div {
    max-width: 720px;
}

@media (max-width: 760px) {
    .help-content {
        padding-top: 2.5rem;
    }

    .help-hero__actions {
        flex-direction: column;
    }

    .help-hero__actions .button {
        width: 100%;
        text-align: center;
    }

    .help-filters {
        gap: 0.4rem;
    }

    .help-filter {
        flex: 1 1 auto;
    }

    .help-contact {
        align-items: stretch;
        flex-direction: column;
    }

    .help-contact .button {
        width: 100%;
        text-align: center;
    }
}

/* ==================================================
   HELP HEADING CONTRAST V1
   ================================================== */

.help-page .help-heading h2 {
    color: var(--rv-text);
}
