.faq-hl {
    --hl-primary: var(--mdb-primary, #c53030);
    --hl-primary-dark: var(--mdb-primary-dark, #8a2121);
    --hl-primary-light: var(--mdb-primary-light, #f9eaea);
    --hl-ink: #222;
    --hl-text: #4f4f4f;
    --hl-muted: #8a8a8a;
    --hl-border: #dedede;
    --hl-hairline: #ececec;
    --hl-surface: #fff;
    --hl-row-hover: var(--hl-primary-light);
    --hl-icon-color: #6c6c6c;
    --hl-icon-bg: #fff;
    --hl-icon-border: rgba(0, 0, 0, 0.08);
    color: var(--hl-text);
}

.faq-hl > link {
    display: none;
}

.faq-hl a {
    text-decoration: none;
}

.faq-hl[data-bs-theme="dark"],
[data-bs-theme="dark"] .faq-hl {
    --hl-primary: #e46a6a;
    --hl-primary-dark: #f0a0a0;
    --hl-primary-light: rgba(228, 106, 106, 0.14);
    --hl-ink: #f3f3f3;
    --hl-text: #cbcbcb;
    --hl-muted: #9a9a9a;
    --hl-border: rgba(255, 255, 255, 0.14);
    --hl-hairline: rgba(255, 255, 255, 0.1);
    --hl-surface: rgba(var(--mdb-dark-rgb, 34, 34, 34), var(--mdb-bg-opacity, 1));
    --hl-row-hover: rgba(228, 106, 106, 0.12);
    --hl-icon-color: #cfcfcf;
    --hl-icon-bg: rgba(255, 255, 255, 0.06);
    --hl-icon-border: rgba(255, 255, 255, 0.14);
}

.faq-hl__eyebrow {
    margin: 0 0 0.35rem;
    color: var(--hl-primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.faq-hl__title {
    margin: 0;
    color: var(--hl-ink);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 700;
    line-height: 1.15;
}

.faq-hl__q {
    color: var(--hl-ink);
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.faq-hl__arrow {
    flex: 0 0 auto;
    color: var(--hl-primary);
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 160ms ease;
}

.faq-hl__icon-wrap {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--hl-icon-color);
    background: var(--hl-icon-bg);
    border: 1px solid var(--hl-icon-border);
    border-radius: 50%;
    transition:
        color 160ms ease,
        border-color 160ms ease;
}

.faq-hl__icon {
    width: 1.6rem;
    height: 1.6rem;
}

.faq-hl__cat {
    align-self: flex-start;
    color: var(--hl-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 160ms ease;
}

.faq-hl__cat:hover {
    color: var(--hl-primary);
    text-decoration: underline;
    text-decoration-thickness: 0.07em;
    text-underline-offset: 0.16em;
}

.faq-hl__q-link {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: inherit;
}

.faq-hl__q-link:hover {
    text-decoration: none;
}

.faq-hl__q-link:hover .faq-hl__q {
    color: var(--hl-primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 0.07em;
    text-underline-offset: 0.18em;
}

.faq-hl__q-link:hover .faq-hl__arrow {
    transform: translateX(0.2rem);
}

.faq-hl__head {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.faq-hl__btn,
.faq-hl__cta {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.faq-hl__btn .faq-hl__arrow,
.faq-hl__cta .faq-hl__arrow {
    color: inherit;
}

.faq-hl__btn:hover .faq-hl__arrow,
.faq-hl__btn:focus-visible .faq-hl__arrow,
.faq-hl__cta:hover .faq-hl__arrow,
.faq-hl__cta:focus-visible .faq-hl__arrow {
    transform: translateX(0.2rem);
}

.faq-hl--list .faq-hl__card {
    overflow: hidden;
    background: var(--hl-surface);
    border: 1px solid var(--hl-border);
    border-top: 0.25rem solid var(--hl-primary);
    border-radius: 0.75rem;
    box-shadow: var(--mdb-shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.08));
}

.faq-hl--list .faq-hl__head {
    padding: 1.35rem 1.5rem 1.1rem;
    border-bottom: 1px solid var(--hl-hairline);
}

.faq-hl--list .faq-hl__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-hl--list .faq-hl__row {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1.5rem;
    transition: background-color 160ms ease;
}

.faq-hl--list .faq-hl__row + .faq-hl__row {
    border-top: 1px solid var(--hl-hairline);
}

.faq-hl--list .faq-hl__row:hover {
    background: var(--hl-row-hover);
}

.faq-hl--list .faq-hl__row:hover .faq-hl__icon-wrap {
    color: var(--hl-primary);
    border-color: var(--hl-primary);
}

.faq-hl__row-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.faq-hl--split .faq-hl__split {
    display: grid;
    grid-template-columns: minmax(0, 21rem) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.faq-hl__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    background:
        radial-gradient(circle at 85% 8%, rgba(197, 48, 48, 0.5), transparent 15rem),
        #222;
    border: 1px solid transparent;
    border-radius: 1rem;
    box-shadow: var(--mdb-shadow-md, 0 4px 8px rgba(0, 0, 0, 0.12));
}

[data-bs-theme="dark"] .faq-hl__panel {
    border-color: #3a3a3a;
}

.faq-hl__eyebrow--light {
    color: #f1b3b3;
}

.faq-hl__title--light {
    color: #fff;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.faq-hl__lead {
    margin: 0.7rem 0 0;
    color: #e2e2e2;
    font-size: 0.98rem;
    line-height: 1.55;
}

.faq-hl__cta {
    align-self: flex-start;
    margin-top: 1.4rem;
}

.faq-hl__feed {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0.25rem 1.35rem;
    list-style: none;
    background: var(--hl-surface);
    border: 1px solid var(--hl-border);
    border-top: 0.25rem solid var(--hl-primary);
    border-radius: 0.75rem;
    box-shadow: var(--mdb-shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.08));
}

.faq-hl__feed-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0.25rem;
}

.faq-hl__feed-item + .faq-hl__feed-item {
    border-top: 1px solid var(--hl-hairline);
}

.faq-hl__feed-item:hover .faq-hl__icon-wrap {
    color: var(--hl-primary);
    border-color: var(--hl-primary);
}

.faq-hl__feed-text {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.faq-hl__meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    align-self: flex-start;
}

.faq-hl__count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    color: var(--hl-primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    background: var(--hl-primary-light);
    border-radius: 999px;
}

@media (max-width: 48rem) {
    .faq-hl--split .faq-hl__split {
        grid-template-columns: minmax(0, 1fr);
    }
}

.faq-hl a:focus-visible {
    outline: 2px solid var(--hl-primary);
    outline-offset: 3px;
    border-radius: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
    .faq-hl *,
    .faq-hl *::before,
    .faq-hl *::after {
        transition: none !important;
    }
}
