@import '_content/ScoutBadger.Ui.Components/ScoutBadger.Ui.Components.635p3llayq.bundle.scp.css';
@import '_content/ScoutBadger.Ui.DesignSystem/ScoutBadger.Ui.DesignSystem.442imwdfl7.bundle.scp.css';

/* /Pages/Badges/BadgeDetailPage.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   BADGE DETAIL PAGE
   Single scrollable page: badge overview card + requirements
   Mobile: single column, bottom sheet for requirement details
   Desktop: requirements in 2-column grid + inline detail panel
   ═══════════════════════════════════════════════════════════ */

/* ── Page wrapper ── */

.badge-detail-page[b-t5vzxq0jqo] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   BADGE OVERVIEW CARD
   ═══════════════════════════════════════════════════════════ */

.badge-overview-card[b-t5vzxq0jqo] {
    background: var(--app-color-surface);
    border-radius: 1.25rem;
    border: 1.5px solid var(--app-color-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: badge-tab-fade-in-b-t5vzxq0jqo 0.25s ease-out;
}

.badge-overview-card__header[b-t5vzxq0jqo] {
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: linear-gradient(145deg, var(--app-color-surface), var(--app-color-surface-alt));
    border-bottom: 1px solid var(--app-color-border);
}

.badge-overview-card__image-wrapper[b-t5vzxq0jqo] {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 1.15rem;
    padding: 3px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--app-color-border);
}

.badge-overview-card__image[b-t5vzxq0jqo] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.95rem;
}

.badge-overview-card__title-wrapper[b-t5vzxq0jqo] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 0.15rem;
}

.badge-overview-card__title[b-t5vzxq0jqo] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--app-color-text);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.badge-overview-card__description[b-t5vzxq0jqo] {
    margin: 0;
    font-size: 0.88rem;
    color: var(--app-color-text-muted);
    line-height: 1.6;
}

/* ── Facts grid ── */

.badge-overview-card__facts[b-t5vzxq0jqo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.6rem;
    padding: 1.25rem 1.5rem 0;
}

.badge-overview-card__fact[b-t5vzxq0jqo] {
    background: var(--app-color-surface-alt);
    border: 1px solid var(--app-color-border);
    border-radius: 0.85rem;
    padding: 0.75rem 0.9rem;
    transition: border-color 0.15s ease;
}

.badge-overview-card__fact:hover[b-t5vzxq0jqo] {
    border-color: color-mix(in srgb, var(--app-color-border), var(--app-color-primary) 20%);
}

.badge-overview-card__fact-label[b-t5vzxq0jqo] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--app-color-text-muted);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

[b-t5vzxq0jqo] .badge-overview-card__fact-label .rzi {
    font-size: 0.9rem;
    color: var(--app-color-primary);
}

.badge-overview-card__fact-value[b-t5vzxq0jqo] {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--app-color-text);
    line-height: 1.35;
    word-break: break-word;
}

/* ── Notes ── */

.badge-overview-card__notes[b-t5vzxq0jqo] {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.badge-overview-card__note-box[b-t5vzxq0jqo] {
    background: var(--app-color-surface-alt);
    border-radius: 0.85rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--app-color-primary);
}

.badge-overview-card__note-header[b-t5vzxq0jqo] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--app-color-primary-dark);
    font-weight: 800;
    margin-bottom: 0.45rem;
}

[b-t5vzxq0jqo] .badge-overview-card__note-header .rzi {
    font-size: 0.95rem;
}

.badge-overview-card__note-content[b-t5vzxq0jqo] {
    margin: 0;
    font-size: 0.88rem;
    color: var(--app-color-text);
    line-height: 1.6;
    white-space: pre-line;
}

/* ── Mobile: center header ── */

@media (max-width: 768px) {
    .badge-overview-card__header[b-t5vzxq0jqo] {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .badge-overview-card__image-wrapper[b-t5vzxq0jqo] {
        width: 80px;
        height: 80px;
    }

    .badge-overview-card__title-wrapper[b-t5vzxq0jqo] {
        align-items: center;
        padding-top: 0;
    }

    .badge-overview-card__facts[b-t5vzxq0jqo] {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }

    .badge-overview-card__notes[b-t5vzxq0jqo] {
        padding: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   REQUIREMENTS SECTION
   ═══════════════════════════════════════════════════════════ */

.badge-requirements-tab[b-t5vzxq0jqo] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: badge-tab-fade-in-b-t5vzxq0jqo 0.25s ease-out;
}

.badge-req-panel[b-t5vzxq0jqo] {
    background: var(--app-color-surface);
    border-radius: 1.25rem;
    border: 1.5px solid var(--app-color-border);
    overflow: hidden;
}

.badge-req-panel__header[b-t5vzxq0jqo] {
    padding: 1rem 1.25rem 0.5rem;
}

.badge-req-panel__content[b-t5vzxq0jqo] {
    padding: 0 1.25rem 1.25rem;
}

/* ── Detail panel (desktop inline, hidden on mobile) ── */

.badge-detail-panel[b-t5vzxq0jqo] {
    display: none;
}

/* ═══════════════════════════════════════════════════════════
   BOTTOM SHEET (mobile requirement detail)
   ═══════════════════════════════════════════════════════════ */

.bottom-sheet-overlay[b-t5vzxq0jqo] {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.3s ease;
}

.bottom-sheet-overlay--visible[b-t5vzxq0jqo] {
    background: rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.bottom-sheet[b-t5vzxq0jqo] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--app-color-surface);
    border-radius: 1.5rem 1.5rem 0 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    /* Account for bottom nav bar height + safe area on mobile iOS */
    padding: 0.5rem 1.5rem calc(var(--sb-bottom-nav-total-height, 56px) + 1rem);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    overscroll-behavior: contain;
}

.bottom-sheet--open[b-t5vzxq0jqo] {
    transform: translateY(0);
}

/* Drag handle pill indicator */
.bottom-sheet[b-t5vzxq0jqo]::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: var(--app-color-border);
    border-radius: 2px;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}



.bottom-sheet__header[b-t5vzxq0jqo] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
    padding-right: 3.25rem;
    margin-bottom: 0.75rem;
}

.bottom-sheet__title[b-t5vzxq0jqo] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--app-color-text);
    line-height: 1.3;
}

.bottom-sheet__subtitle[b-t5vzxq0jqo] {
    font-size: 0.82rem;
    color: var(--app-color-text-muted);
    font-weight: 500;
}

.bottom-sheet__close[b-t5vzxq0jqo] {
    position: absolute;
    top: -0.15rem;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--app-color-surface-alt);
    border-radius: var(--sb-radius-full);
    color: var(--app-color-text-muted);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.bottom-sheet__close:hover[b-t5vzxq0jqo] {
    background: var(--app-color-border);
    color: var(--app-color-text);
}

.bottom-sheet__description[b-t5vzxq0jqo] {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: var(--app-color-text-secondary);
    line-height: 1.55;
}

.bottom-sheet__status[b-t5vzxq0jqo] {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.bottom-sheet__status-card[b-t5vzxq0jqo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
}

.bottom-sheet__status-card[b-t5vzxq0jqo]  .rzi {
    font-size: 1.5rem;
}

.bottom-sheet__status-card--completed[b-t5vzxq0jqo] {
    background: rgba(var(--app-primary-rgb), 0.10);
    color: var(--app-color-primary-dark);
    border: 1px solid rgba(var(--app-primary-rgb), 0.20);
}

.bottom-sheet__status-card--completed[b-t5vzxq0jqo]  .rzi {
    color: var(--app-color-primary);
}

.bottom-sheet__status-card--pending[b-t5vzxq0jqo] {
    background: color-mix(in srgb, var(--sb-status-pending-bg), var(--app-color-surface) 50%);
    color: var(--sb-status-pending);
    border: 1px solid color-mix(in srgb, var(--sb-status-pending), transparent 70%);
}

.bottom-sheet__status-card--pending[b-t5vzxq0jqo]  .rzi {
    color: var(--sb-status-pending, var(--app-color-amber));
}

.bottom-sheet__status-card--open[b-t5vzxq0jqo] {
    background: var(--app-color-surface-alt);
    color: var(--app-color-text-muted);
    border: 1px solid var(--app-color-border);
}

.bottom-sheet__status-card--open[b-t5vzxq0jqo]  .rzi {
    color: var(--app-color-text-muted);
}

.bottom-sheet__action-btn[b-t5vzxq0jqo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.bottom-sheet__action-btn:active[b-t5vzxq0jqo] {
    transform: scale(0.98);
}

.bottom-sheet__action-btn--primary[b-t5vzxq0jqo] {
    background: var(--app-color-primary);
    color: white;
}

.bottom-sheet__action-btn--primary:hover[b-t5vzxq0jqo] {
    background: var(--app-color-primary-dark);
}

.bottom-sheet__action-btn--secondary[b-t5vzxq0jqo] {
    background: var(--app-color-surface-alt);
    color: var(--app-color-text);
    border: 1px solid var(--app-color-border);
}

.bottom-sheet__action-btn--secondary:hover[b-t5vzxq0jqo] {
    background: var(--app-color-border);
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP (≥ 769px)
   Requirements + inline detail panel side-by-side
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 769px) {

    /* Requirements grid: tree + detail panel when open */
    .badge-requirements-tab.has-detail[b-t5vzxq0jqo] {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 1rem;
        align-items: start;
    }

    /* ── Inline detail panel ── */

    .badge-detail-panel[b-t5vzxq0jqo] {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        background: var(--app-color-surface);
        border: 1.5px solid var(--app-color-border);
        border-radius: 1.25rem;
        padding: 1.25rem;
        animation: badge-detail-panel-in-b-t5vzxq0jqo 0.2s ease-out;
        align-self: start;
        position: sticky;
        top: 0;
    }

    .badge-detail-panel__header[b-t5vzxq0jqo] {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .badge-detail-panel__titles[b-t5vzxq0jqo] {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .badge-detail-panel__title[b-t5vzxq0jqo] {
        margin: 0;
        font-size: 1.08rem;
        font-weight: 800;
        color: var(--app-color-text);
        line-height: 1.3;
    }

    .badge-detail-panel__subtitle[b-t5vzxq0jqo] {
        font-size: 0.78rem;
        color: var(--app-color-text-muted);
        font-weight: 500;
    }

    .badge-detail-panel__close[b-t5vzxq0jqo] {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: var(--app-color-surface-alt);
        border-radius: var(--sb-radius-full);
        color: var(--app-color-text-muted);
        cursor: pointer;
        flex-shrink: 0;
        transition: background 0.15s ease, color 0.15s ease;
    }

    .badge-detail-panel__close:hover[b-t5vzxq0jqo] {
        background: var(--app-color-border);
        color: var(--app-color-text);
    }

    .badge-detail-panel__description[b-t5vzxq0jqo] {
        margin: 0;
        font-size: 0.88rem;
        color: var(--app-color-text-secondary);
        line-height: 1.55;
    }

    .badge-detail-panel__status[b-t5vzxq0jqo] {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
    }

    .badge-detail-panel__status-card[b-t5vzxq0jqo] {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.6rem 0.85rem;
        border-radius: 0.85rem;
        font-size: 0.88rem;
        font-weight: 700;
    }

    .badge-detail-panel__status-card--completed[b-t5vzxq0jqo] {
        background: rgba(var(--app-primary-rgb), 0.10);
        color: var(--app-color-primary-dark);
        border: 1px solid rgba(var(--app-primary-rgb), 0.20);
    }

    .badge-detail-panel__status-card--pending[b-t5vzxq0jqo] {
        background: color-mix(in srgb, var(--sb-status-pending-bg), var(--app-color-surface) 50%);
        color: var(--sb-status-pending);
        border: 1px solid color-mix(in srgb, var(--sb-status-pending), transparent 70%);
    }

    .badge-detail-panel__status-card--open[b-t5vzxq0jqo] {
        background: var(--app-color-surface-alt);
        color: var(--app-color-text-muted);
        border: 1px solid var(--app-color-border);
    }

    .badge-detail-panel__action-btn[b-t5vzxq0jqo] {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        width: 100%;
        padding: 0.65rem 1rem;
        border: none;
        border-radius: 0.85rem;
        font-size: 0.88rem;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.15s ease, transform 0.1s ease;
    }

    .badge-detail-panel__action-btn:active[b-t5vzxq0jqo] {
        transform: scale(0.98);
    }

    .badge-detail-panel__action-btn--primary[b-t5vzxq0jqo] {
        background: var(--app-color-primary);
        color: white;
    }

    .badge-detail-panel__action-btn--primary:hover[b-t5vzxq0jqo] {
        background: var(--app-color-primary-dark);
    }

    .badge-detail-panel__action-btn--secondary[b-t5vzxq0jqo] {
        background: var(--app-color-surface-alt);
        color: var(--app-color-text);
        border: 1px solid var(--app-color-border);
    }

    .badge-detail-panel__action-btn--secondary:hover[b-t5vzxq0jqo] {
        background: var(--app-color-border);
    }

    @keyframes badge-detail-panel-in-b-t5vzxq0jqo {
        from {
            opacity: 0;
            transform: translateX(12px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .badge-detail-panel--closing[b-t5vzxq0jqo] {
        animation: badge-detail-panel-out-b-t5vzxq0jqo 0.25s ease-in forwards;
    }

    @keyframes badge-detail-panel-out-b-t5vzxq0jqo {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(12px);
        }
    }

    /* Hide the bottom sheet on desktop */
    .bottom-sheet-overlay[b-t5vzxq0jqo] {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   LARGE DESKTOP (≥ 1200px): wider detail panel
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 1200px) {
    .badge-requirements-tab.has-detail[b-t5vzxq0jqo] {
        grid-template-columns: 1fr 380px;
    }
}

/* ═══════════════════════════════════════════════════════════
   TAB SWITCH ANIMATION
   ═══════════════════════════════════════════════════════════ */

@keyframes badge-tab-fade-in-b-t5vzxq0jqo {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Badges/BadgesPage.razor.rz.scp.css */
/* Scoped styles for the Public App Badges Page */
/* Compact, playful design for younger audience (8-25) */

/* ── Hero Section ── */
[b-h1zouunfed] .badges-page__hero {
    background: linear-gradient(
        135deg,
        var(--sb-public-primary, var(--app-color-primary)) 0%,
        color-mix(in srgb, var(--sb-public-primary, var(--app-color-primary)), black 25%) 100%
    );
    color: var(--app-color-white);
    border-radius: var(--sb-radius-lg, 1rem);
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
}

[b-h1zouunfed] .badges-page__hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, color-mix(in srgb, var(--app-color-white), transparent 85%) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

[b-h1zouunfed] .badges-page__eyebrow {
    font-size: 0.6875rem;
    font-weight: var(--sb-font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: color-mix(in srgb, var(--app-color-white), transparent 25%);
    margin-bottom: 0.125rem;
    display: block;
}

[b-h1zouunfed] .badges-page__hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: var(--app-color-white);
    line-height: 1.2;
}

[b-h1zouunfed] .badges-page__hero-copy {
    font-size: 0.8125rem;
    color: color-mix(in srgb, var(--app-color-white), transparent 15%);
    margin: 0;
    max-width: 480px;
    line-height: 1.4;
}

/* ── Search Bar ── */
[b-h1zouunfed] .search-bar__input-wrap {
    border-radius: var(--sb-radius-2xl);
    border: 1px solid var(--app-color-border);
    background: var(--app-color-surface);
    padding: 0.25rem 1rem;
    transition: all var(--sb-transition-base);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

[b-h1zouunfed] .search-bar__input-wrap:focus-within {
    border-color: var(--app-color-primary);
    box-shadow: 0 2px 8px rgba(var(--app-color-primary-rgb), 0.12);
}

[b-h1zouunfed] .search-bar__input {
    font-size: 0.875rem;
    padding: 0.35rem 0.65rem 0.35rem 1.25rem;
    border: none;
    background: transparent;
    box-shadow: none;
}

[b-h1zouunfed] .search-bar__icon {
    color: var(--app-color-primary);
    font-size: 1.125rem;
}

/* ── Filters wrapper ── */
[b-h1zouunfed] .badges-page__filters {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ── Filter Chips ── */
[b-h1zouunfed] .filter-chip {
    border-radius: var(--sb-radius-2xl);
    padding: 0.3rem 0.875rem;
    font-weight: var(--sb-font-weight-semibold);
    font-size: 0.8125rem;
    transition: all var(--sb-transition-fast);
    border: 1.5px solid var(--app-color-border);
    background: var(--app-color-surface);
    color: var(--app-color-text-muted);
    cursor: pointer;
}

[b-h1zouunfed] .filter-chip:hover {
    border-color: var(--app-color-primary-light);
    color: var(--app-color-primary);
}

[b-h1zouunfed] .filter-chip--active {
    background: var(--app-color-primary);
    border-color: var(--app-color-primary);
    color: white;
    box-shadow: 0 2px 6px rgba(var(--app-color-primary-rgb), 0.25);
}

[b-h1zouunfed] .filter-chip--active:hover {
    color: white;
}

/* ── Badge Grid ── */
[b-h1zouunfed] .grid-wrapper__header {
    display: none;
}

[b-h1zouunfed] .badge-list-item__link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    border-radius: var(--sb-radius-card);
    outline-offset: 2px;
}

[b-h1zouunfed] .badge-list-item__link:hover .badge-list-item {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--app-color-primary-light);
}

[b-h1zouunfed] .badge-list-item__link:hover .badge-list-item__image {
    transform: rotate(3deg) scale(1.08);
}

[b-h1zouunfed] .badge-list-item__link:focus-visible {
    outline: 2px solid var(--app-color-primary);
    border-radius: var(--sb-radius-card);
}

[b-h1zouunfed] .badge-list {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    padding: 0.25rem;
}

@media (min-width: 1024px) {
    [b-h1zouunfed] .badge-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

[b-h1zouunfed] .badge-list-item {
    transition: all var(--sb-transition-base);
    border-radius: var(--sb-radius-xl);
    overflow: hidden;
    border: 1px solid var(--app-color-border-subtle, rgba(0, 0, 0, 0.05));
    background: var(--app-color-surface);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    padding-bottom: 0.125rem;
}

[b-h1zouunfed] .badge-list-item .app-stack {
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem 1rem 1rem;
    gap: 0.75rem;
    height: 100%;
    justify-content: space-between;
}

[b-h1zouunfed] .badge-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--app-primary-rgb), 0.08); /* Clean subtle primary glow */
    border-color: rgba(var(--app-primary-rgb), 0.25);
}

[b-h1zouunfed] .badge-list-item__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    flex-grow: 1; /* Allow heading to take available space */
}

[b-h1zouunfed] .badge-list-item__image {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin: 0 auto;
    border: 3px solid white;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    object-fit: contain;
}

[b-h1zouunfed] .badge-list-item__heading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

[b-h1zouunfed] .badge-list-item__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem; /* Precise gap for consistency */
    width: 100%;
}

[b-h1zouunfed] .badge-list-item__header h3 {
    font-size: 0.8125rem;
    font-weight: var(--sb-font-weight-bold);
    color: var(--app-color-text);
    line-height: 1.3;
    margin-bottom: 0;
    
    /* Clamp to 2 lines for perfect vertical alignment */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.15rem; /* Minimum height for visual consistency */
    align-content: center; /* Center text vertically if 1 line */
    word-break: break-word;
    overflow-wrap: anywhere;
}

[b-h1zouunfed] .badge-list-item__category {
    display: none;
}

[b-h1zouunfed] .badge-list-item__level {
    font-size: 0.6875rem;
    color: var(--app-color-primary-dark, var(--app-color-primary));
    background: rgba(var(--app-primary-rgb), 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 0.75rem;
    font-weight: var(--sb-font-weight-semibold);
    text-align: center;
    line-height: 1.2;
}

[b-h1zouunfed] .badge-list-item__description {
    display: none;
}

[b-h1zouunfed] .badge-list-item__progress-wrap {
    width: 100%;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--app-color-border);
}

[b-h1zouunfed] .badge-list-item__progress-wrap .progress-bar {
    height: 5px;
    border-radius: 3px;
    background: var(--app-color-surface-alt);
    border: none;
    overflow: hidden;
}

[b-h1zouunfed] .badge-list-item__progress-wrap .progress-bar__fill {
    background: linear-gradient(90deg, var(--app-color-primary-light) 0%, var(--app-color-primary) 100%);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[b-h1zouunfed] .badge-list-item__progress {
    font-size: 0.6875rem;
    font-weight: var(--sb-font-weight-semibold);
    color: var(--app-color-primary);
    margin-top: 0.25rem;
    display: block;
}

[b-h1zouunfed] .badge-list-item__meta {
    display: none;
}

/* Status chip styling */
[b-h1zouunfed] .badge-list-item__header .app-chip {
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: var(--sb-font-weight-bold);
}

/* ── Not-started (0%) badge modifier ── */
[b-h1zouunfed] .badge-list-item--not-started {
    opacity: 0.72;
}

[b-h1zouunfed] .badge-list-item--not-started .badge-list-item__image {
    filter: grayscale(0.5);
}

[b-h1zouunfed] .badge-list-item--not-started .badge-list-item__progress {
    color: var(--app-color-text-muted, #888);
    font-style: italic;
}

/* ── Completed (100%) badge modifier ── */
[b-h1zouunfed] .badge-list-item--completed {
    border-left: 3px solid var(--app-color-success, #2e7d32);
}

[b-h1zouunfed] .badge-list-item--completed .badge-list-item__progress {
    color: var(--app-color-success, #2e7d32);
}

[b-h1zouunfed] .badge-list-item--completed .badge-list-item__progress-wrap .progress-bar__fill {
    background: linear-gradient(90deg, var(--app-color-success, #2e7d32) 0%, #4caf50 100%);
}

/* ── Mobile: Hero section bleeds edge-to-edge ── */
@media (max-width: 768px) {
    [b-h1zouunfed] .badges-page__hero {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
        border: none;
        box-shadow: none;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   YOUTHFUL UI — Badge card staggered entrance animation
   `slideUpFade` keyframe is defined in public-app.css (global)
   ═══════════════════════════════════════════════════════════════════ */

[b-h1zouunfed] .badge-list-item {
    animation: slideUpFade 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Stagger delay for the first 8 cards (beyond 8 all animate together) */
[b-h1zouunfed] .badge-list-item:nth-child(1) { animation-delay: 0ms; }
[b-h1zouunfed] .badge-list-item:nth-child(2) { animation-delay: 35ms; }
[b-h1zouunfed] .badge-list-item:nth-child(3) { animation-delay: 70ms; }
[b-h1zouunfed] .badge-list-item:nth-child(4) { animation-delay: 105ms; }
[b-h1zouunfed] .badge-list-item:nth-child(5) { animation-delay: 140ms; }
[b-h1zouunfed] .badge-list-item:nth-child(6) { animation-delay: 175ms; }
[b-h1zouunfed] .badge-list-item:nth-child(7) { animation-delay: 210ms; }
[b-h1zouunfed] .badge-list-item:nth-child(8) { animation-delay: 245ms; }
/* /Pages/Dashboard/DashboardPage.razor.rz.scp.css */
.dashboard-page__hero[b-7rcvn727qx] {
    border-left: 4px solid var(--sb-public-primary, var(--app-color-primary));
    background: linear-gradient(
        135deg,
        var(--app-color-surface) 62%,
        color-mix(in srgb, var(--sb-public-primary, var(--app-color-primary)), transparent 90%)
    );
}

.dashboard-page__eyebrow[b-7rcvn727qx] {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: var(--app-font-size-caption);
    font-weight: var(--sb-font-weight-semibold);
    color: var(--app-color-text-muted);
}

.dashboard-page__hero-title[b-7rcvn727qx],
.dashboard-page__nudge-title[b-7rcvn727qx] {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--app-color-text);
}

.dashboard-page__hero-copy[b-7rcvn727qx],
.dashboard-page__nudge-copy[b-7rcvn727qx] {
    margin: 0;
    color: var(--app-color-text-muted);
    line-height: var(--sb-line-height-relaxed);
}

.dashboard-page__hero-progress-wrap[b-7rcvn727qx] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.1rem;
}

.dashboard-page__hero-progress-track[b-7rcvn727qx] {
    width: 100%;
    height: 8px;
    border-radius: var(--sb-radius-full);
    background: color-mix(in srgb, var(--app-color-primary), transparent 85%);
    overflow: hidden;
}

.dashboard-page__hero-progress-fill[b-7rcvn727qx] {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--app-color-primary), color-mix(in srgb, var(--app-color-primary), white 25%));
    transition: width var(--sb-transition-base);
}

.dashboard-page__hero-progress-copy[b-7rcvn727qx] {
    margin: 0;
    font-size: var(--app-font-size-meta);
    color: var(--app-color-text-muted);
}

.dashboard-page__hero-progress-copy strong[b-7rcvn727qx] {
    color: var(--app-color-text);
}

.dashboard-page__actions[b-7rcvn727qx] {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding-top: 0.15rem;
}

.dashboard-page__cta[b-7rcvn727qx] {
    transition: transform var(--sb-transition-fast), box-shadow var(--sb-transition-fast), background-color var(--sb-transition-fast), border-color var(--sb-transition-fast), color var(--sb-transition-fast);
}

.dashboard-page__cta--primary[b-7rcvn727qx] {
    background: var(--sb-public-primary, var(--app-color-primary));
    border-color: var(--sb-public-primary, var(--app-color-primary));
    color: var(--app-color-white);
}

.dashboard-page__cta--primary:hover[b-7rcvn727qx],
.dashboard-page__cta--primary:focus-visible[b-7rcvn727qx] {
    background: var(--sb-public-primary, var(--app-color-primary));
    border-color: var(--sb-public-primary, var(--app-color-primary));
    color: var(--app-color-white);
    box-shadow: 0 8px 18px -12px rgba(16, 24, 40, 0.45);
    filter: brightness(0.93);
}

.dashboard-page__cta--secondary:hover[b-7rcvn727qx],
.dashboard-page__cta--secondary:focus-visible[b-7rcvn727qx] {
    border-color: var(--sb-public-primary, var(--app-color-primary));
    background: var(--app-color-surface-alt);
    color: var(--app-color-text);
}

.dashboard-page__nudge[b-7rcvn727qx] {
    border-style: dashed;
    border-width: 1.5px;
    border-color: color-mix(in srgb, var(--app-color-border), var(--app-color-primary) 22%);
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--app-color-primary), transparent 96%),
        var(--app-color-surface)
    );
}

.dashboard-page[b-7rcvn727qx]  .stat-card-row {
    gap: var(--sb-space-3);
    padding-top: 0.15rem;
}

.dashboard-page[b-7rcvn727qx]  .stat-card {
    border: 1px solid color-mix(in srgb, var(--app-color-border), var(--app-color-primary) 12%);
    box-shadow: var(--app-shadow-s);
}

.dashboard-page[b-7rcvn727qx]  .stat-card__icon {
    width: 30px;
    height: 30px;
    border-radius: var(--sb-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--app-color-primary), transparent 88%);
    color: var(--app-color-primary);
}

.dashboard-page[b-7rcvn727qx]  .stat-card__icon--material,
.dashboard-page[b-7rcvn727qx]  .stat-card__icon--material.rzi {
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 640px) {
    .dashboard-page__actions .app-btn[b-7rcvn727qx] {
        width: 100%;
        justify-content: center;
    }
}



/* ═══════════════════════════════════════════════════════════════════
   YOUTHFUL UI — Hero gradient overrides + stat card icon colors
   The .dashboard-page__hero rule in public-app.css applies the
   gradient to the AppCard root. These scoped rules handle inner
   child elements (which DO receive the Blazor scope attr).
   ═══════════════════════════════════════════════════════════════════ */

/* Eyebrow label: white/translucent on gradient */
.dashboard-page__hero .dashboard-page__eyebrow[b-7rcvn727qx] {
    color: rgba(255, 255, 255, 0.75);
}

/* Hero title: crisp white, slightly larger + bolder */
.dashboard-page__hero .dashboard-page__hero-title[b-7rcvn727qx] {
    color: var(--app-color-surface);
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hero body copy */
.dashboard-page__hero .dashboard-page__hero-copy[b-7rcvn727qx] {
    color: rgba(255, 255, 255, 0.85);
}

/* Progress track: translucent white on gradient bg */
.dashboard-page__hero .dashboard-page__hero-progress-track[b-7rcvn727qx] {
    background: rgba(255, 255, 255, 0.28);
}

/* Progress fill: bright white bar with glow */
.dashboard-page__hero .dashboard-page__hero-progress-fill[b-7rcvn727qx] {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), var(--app-color-surface));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.55);
}

/* Progress caption */
.dashboard-page__hero .dashboard-page__hero-progress-copy[b-7rcvn727qx] {
    color: rgba(255, 255, 255, 0.82);
}

.dashboard-page__hero .dashboard-page__hero-progress-copy strong[b-7rcvn727qx] {
    color: var(--app-color-surface);
}

/* Primary CTA: white button with green text (inverse on gradient) */
.dashboard-page__hero .dashboard-page__cta--primary[b-7rcvn727qx] {
    background: var(--app-color-surface) !important;
    border-color: var(--app-color-surface) !important;
    color: var(--app-color-primary) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14) !important;
}

.dashboard-page__hero .dashboard-page__cta--primary:hover[b-7rcvn727qx],
.dashboard-page__hero .dashboard-page__cta--primary:focus-visible[b-7rcvn727qx] {
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
    filter: none !important;
}

/* Secondary CTA: ghost/outline in white */
.dashboard-page__hero .dashboard-page__cta--secondary[b-7rcvn727qx] {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.52) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.dashboard-page__hero .dashboard-page__cta--secondary:hover[b-7rcvn727qx],
.dashboard-page__hero .dashboard-page__cta--secondary:focus-visible[b-7rcvn727qx] {
    background: rgba(255, 255, 255, 0.24) !important;
    border-color: rgba(255, 255, 255, 0.75) !important;
    color: var(--app-color-surface) !important;
}

/* Both CTAs: pill shape */
.dashboard-page__cta[b-7rcvn727qx] {
    border-radius: var(--sb-radius-full, 9999px) !important;
}

/* ── Stat card icons: unique hues per position ── */
.dashboard-page[b-7rcvn727qx]  .stat-card:nth-child(1) .stat-card__icon {
    /* Completed — orange brand */
    background: var(--app-stat-icon-1-bg);
    color: var(--app-stat-icon-1-color);
}

.dashboard-page[b-7rcvn727qx]  .stat-card:nth-child(2) .stat-card__icon {
    /* In progress — blue */
    background: var(--app-stat-icon-2-bg);
    color: var(--app-stat-icon-2-color);
}

.dashboard-page[b-7rcvn727qx]  .stat-card:nth-child(3) .stat-card__icon {
    /* Not started — slate */
    background: var(--app-stat-icon-3-bg);
    color: var(--app-stat-icon-3-color);
}

/* Nudge card heading: slightly bolder */
.dashboard-page__nudge-title[b-7rcvn727qx] {
    font-weight: 700;
}
/* /Pages/Reviews/ReviewDetailPage.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   REVIEW DETAIL — Master-Detail Layout
   Desktop: sidebar (review info) + main (tabs + content)
   Mobile: stacked single column with 3-tab approach
   ═══════════════════════════════════════════════════════════ */

.review-detail-layout[b-5xquikru66] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    min-height: 0;
}

/* ── Sidebar (hidden on mobile by default) ── */

.review-detail-layout__sidebar[b-5xquikru66] {
    display: none;
}

.review-sidebar-card[b-5xquikru66] {
    background: var(--app-color-surface);
    border-radius: 1.25rem;
    border: 1.5px solid var(--app-color-border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.review-sidebar-card__image-wrapper[b-5xquikru66] {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(145deg, var(--app-color-surface-alt), var(--app-color-surface));
    border-bottom: 1px solid var(--app-color-border);
}

.review-sidebar-card__image[b-5xquikru66] {
    width: 100%;
    height: 100%;
}

[b-5xquikru66] .review-sidebar-card__image .image-fallback__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review-sidebar-card__body[b-5xquikru66] {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-sidebar-card__status[b-5xquikru66] {
    align-self: flex-start;
}

.review-sidebar-card__title[b-5xquikru66] {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--app-color-text);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.review-sidebar-card__context[b-5xquikru66] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--app-color-text-muted);
}

.review-sidebar-card__context-badge[b-5xquikru66] {
    background: var(--app-color-surface-alt);
    padding: 0.2rem 0.6rem;
    border-radius: 0.75rem;
    color: var(--app-color-text);
    border: 1px solid var(--app-color-border);
    font-size: 0.8rem;
}

.review-sidebar-card__context-badge--link[b-5xquikru66],
.review-overview-card__context-badge--link[b-5xquikru66] {
    text-decoration: none;
    color: var(--app-color-primary, var(--app-color-primary-dark));
    border-color: var(--app-color-primary, var(--app-color-primary-dark));
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.review-sidebar-card__context-badge--link:hover[b-5xquikru66],
.review-overview-card__context-badge--link:hover[b-5xquikru66] {
    background: var(--app-color-primary, var(--app-color-primary-dark));
    color: white;
}

[b-5xquikru66] .review-sidebar-card__context-icon {
    font-size: 1rem;
    opacity: 0.5;
}

.review-sidebar-card__context-req[b-5xquikru66] {
    color: var(--app-color-text-muted);
    font-size: 0.8rem;
}

/* ── Facts ── */

.review-sidebar-card__facts[b-5xquikru66] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.65rem;
    padding: 0 1.25rem 1.25rem;
}

.review-sidebar-card__fact[b-5xquikru66] {
    background: var(--app-color-surface-alt);
    border: 1px solid var(--app-color-border);
    border-radius: 0.85rem;
    padding: 0.75rem 0.85rem;
}

.review-sidebar-card__fact-label[b-5xquikru66] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--app-color-text-muted);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.review-sidebar-card__fact-label[b-5xquikru66]  .rzi {
    font-size: 0.95rem;
    color: var(--app-color-primary);
}

.review-sidebar-card__fact-value[b-5xquikru66] {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--app-color-text);
    line-height: 1.35;
    word-break: break-word;
}

/* ── Notes ── */

.review-sidebar-card__notes[b-5xquikru66] {
    padding: 0 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-sidebar-card__note-box[b-5xquikru66] {
    background: var(--app-color-surface-alt);
    border-radius: 0.85rem;
    padding: 1rem;
    border-left: 3px solid var(--app-color-primary);
}

.review-sidebar-card__note-header[b-5xquikru66] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--app-color-primary-dark);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.review-sidebar-card__note-header[b-5xquikru66]  .rzi {
    font-size: 1rem;
}

.review-sidebar-card__note-content[b-5xquikru66] {
    margin: 0;
    font-size: 0.9rem;
    color: var(--app-color-text);
    line-height: 1.55;
    white-space: pre-line;
}

/* ── Main area ── */

.review-detail-layout__main[b-5xquikru66] {
    flex: 1;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP: Two-column master-detail
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 769px) {
    .review-detail-layout[b-5xquikru66] {
        flex-direction: row;
        gap: 1.5rem;
        align-items: stretch; /* Main fills full height for chat */
    }

    .review-detail-layout__sidebar[b-5xquikru66] {
        display: block;
        width: 320px;
        min-width: 320px;
        max-height: 100%;
        overflow-y: auto;
        align-self: flex-start;
    }

    .review-sidebar-card__image-wrapper[b-5xquikru66] {
        height: 160px;
        aspect-ratio: unset;
        display: flex;
    }

    [b-5xquikru66] .review-sidebar-card__image-wrapper .image-fallback {
        width: 100%;
        height: 100%;
        flex-shrink: 1;
    }

    [b-5xquikru66] .review-sidebar-card__image-wrapper .image-fallback__img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .review-detail-layout__main[b-5xquikru66] {
        flex: 1;
    }

    /* Hide Overview tab on desktop — sidebar shows that info */
    [b-5xquikru66] .review-tab--mobile-only {
        display: none !important;
    }

    /* Hide Overview card content on desktop */
    [b-5xquikru66] .review-overview--mobile-only {
        display: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   LARGE DESKTOP: wider sidebar
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 1200px) {
    .review-detail-layout__sidebar[b-5xquikru66] {
        width: 360px;
        min-width: 360px;
    }
}
/* /Pages/Reviews/ReviewsPage.razor.rz.scp.css */
/* Scoped styles for the Public App Reviews (Triage) Page */
/* Direct selectors handle the .triage-section container; ::deep handles all interior element rules. */

/* ─────────────────────────────────────────────
   Hero Banner
   ───────────────────────────────────────────── */
.reviews-page__hero[b-3qgujkgecl] {
    background: linear-gradient(
        135deg,
        var(--sb-public-primary, var(--app-color-primary)) 0%,
        color-mix(in srgb, var(--sb-public-primary, var(--app-color-primary)), black 25%) 100%
    );
    color: white;
    border-radius: var(--sb-radius-lg, 1rem);
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.reviews-page__hero[b-3qgujkgecl]::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reviews-page__eyebrow[b-3qgujkgecl] {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.125rem;
    display: block;
}

.reviews-page__hero-title[b-3qgujkgecl] {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: white;
    line-height: 1.2;
}

.reviews-page__hero-copy[b-3qgujkgecl] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .reviews-page__hero[b-3qgujkgecl] {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }
}

/* ─────────────────────────────────────────────
   Page stack wrapper
   ───────────────────────────────────────────── */
.reviews-triage[b-3qgujkgecl] {
    /* Intentionally empty — AppStack handles spacing via Gap */
}

/* ─────────────────────────────────────────────
   Triage Section Container
   Mirrors the glassmorphism style of .review-catalog-view__group-header
   ───────────────────────────────────────────── */
.triage-section[b-3qgujkgecl] {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--app-radius-m);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 2px 4px -1px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

/* ─────────────────────────────────────────────
   Scoped compound selectors for open state
   These MUST be non-::deep — .triage-section is the topmost element with the
   Blazor scope attribute [b-xxx], so there is no [b-xxx] ancestor above it.
   The compound selector [b-xxx] .triage-section--open .X would never match.
   The non-::deep form .triage-section--open[b-xxx] .X[b-xxx] works correctly.
   ───────────────────────────────────────────── */
.triage-section--open .triage-section__header[b-3qgujkgecl] {
    border-radius: var(--app-radius-m) var(--app-radius-m) 0 0;
    border-bottom: 1px solid var(--app-color-border);
}

.triage-section__list[b-3qgujkgecl] {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease;
}

.triage-section--open .triage-section__list[b-3qgujkgecl] {
    max-height: 4000px;
    opacity: 1;
    padding: 0.75rem;
}

.triage-section__chevron[b-3qgujkgecl] {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.triage-section--open .triage-section__chevron[b-3qgujkgecl] {
    transform: rotate(180deg);
}



/* ─────────────────────────────────────────────
   Section Header (interactive button)
   ───────────────────────────────────────────── */
[b-3qgujkgecl] .triage-section__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    border-radius: var(--app-radius-m);
    transition: filter 0.15s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* When open: bottom border separates header from list */
[b-3qgujkgecl] .triage-section--open .triage-section__header {
    border-radius: var(--app-radius-m) var(--app-radius-m) 0 0;
    border-bottom: 1px solid var(--app-color-border);
}

[b-3qgujkgecl] .triage-section__header:hover {
    filter: brightness(0.97);
}

[b-3qgujkgecl] .triage-section__header:focus-visible {
    outline: 2px solid var(--app-color-primary);
    outline-offset: -2px;
}

/* ── Color variants ── */
[b-3qgujkgecl] .triage-section__header--pending {
    background: color-mix(in srgb, var(--app-color-warning), transparent 85%);
}

[b-3qgujkgecl] .triage-section__header--approved {
    background: color-mix(in srgb, var(--app-color-primary), transparent 86%);
}

[b-3qgujkgecl] .triage-section__header--rejected {
    background: color-mix(in srgb, var(--app-color-danger), transparent 88%);
}

/* ─────────────────────────────────────────────
   Icon Circle
   ───────────────────────────────────────────── */
[b-3qgujkgecl] .triage-section__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

[b-3qgujkgecl] .triage-section__icon--pending {
    background: color-mix(in srgb, var(--app-color-warning), transparent 85%);
    color: var(--app-color-warning);
}

[b-3qgujkgecl] .triage-section__icon--approved {
    background: color-mix(in srgb, var(--app-color-primary), transparent 88%);
    color: var(--app-color-primary);
}

[b-3qgujkgecl] .triage-section__icon--rejected {
    background: color-mix(in srgb, var(--app-color-danger), transparent 90%);
    color: var(--app-color-danger);
}

/* ─────────────────────────────────────────────
   Title group
   ───────────────────────────────────────────── */
[b-3qgujkgecl] .triage-section__title-group {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

[b-3qgujkgecl] .triage-section__title {
    font-family: var(--app-font-family-heading);
    font-size: 0.9375rem;
    font-weight: var(--sb-font-weight-bold);
    color: var(--app-color-text);
    line-height: 1.2;
}

[b-3qgujkgecl] .triage-section__subtitle {
    font-size: 0.75rem;
    color: var(--app-color-text-muted);
    font-weight: 400;
    line-height: 1.3;
}

[b-3qgujkgecl] .triage-section__subtitle-muted {
    color: var(--app-color-text-muted);
    font-style: italic;
}

/* ─────────────────────────────────────────────
   Count badge — reuses group-count shape,
   but with per-section colour
   ───────────────────────────────────────────── */
[b-3qgujkgecl] .triage-section__count {
    font-size: 0.75rem;
    font-weight: var(--sb-font-weight-bold);
    height: 1.5rem;
    min-width: 1.5rem;
    padding: 0 0.35rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

[b-3qgujkgecl] .triage-section__count--pending {
    background: var(--app-color-warning);
}

[b-3qgujkgecl] .triage-section__count--approved {
    background: var(--app-color-primary);
    box-shadow: 0 2px 4px rgba(var(--app-primary-rgb), 0.25);
}

[b-3qgujkgecl] .triage-section__count--rejected {
    background: var(--app-color-danger);
}

/* ─────────────────────────────────────────────
   Chevron — rotates 180° when open
   ───────────────────────────────────────────── */
[b-3qgujkgecl] .triage-section__chevron {
    font-size: 1.25rem;
    color: var(--app-color-text-muted);
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[b-3qgujkgecl] .triage-section--open .triage-section__chevron {
    transform: rotate(180deg);
}

/* ─────────────────────────────────────────────
   Collapsible list — max-height CSS transition
   ───────────────────────────────────────────── */
[b-3qgujkgecl] .triage-section__list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    /* max-height animates open; opacity gives a soft fade */
    transition:
        max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s ease;
}

[b-3qgujkgecl] .triage-section--open .triage-section__list {
    /* Large enough to fit any reasonable list */
    max-height: 4000px;
    opacity: 1;
    padding: 0.75rem;
}

/* Remove bottom margin from the last card button so padding is consistent */
[b-3qgujkgecl] .triage-section__list .review-catalog-view__item-button:last-child {
    margin-bottom: 0;
}

/* ── Desktop: constrain width for comfortable line-length ── */
@media (min-width: 1024px) {
    .triage-section[b-3qgujkgecl] {
        max-width: 720px;
    }
}

/* ─────────────────────────────────────────────
   Empty state within a collapsed/open section
   ───────────────────────────────────────────── */
[b-3qgujkgecl] .triage-section__empty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: var(--app-color-text-muted);
    font-size: 0.8125rem;
}

[b-3qgujkgecl] .triage-section__empty .mi {
    font-size: 1.25rem;
    color: var(--app-color-primary);
    opacity: 0.7;
}
/* /Shared/AccessControl.razor.rz.scp.css */
/* Native AccessControl styling for mobile app bar */
.access-control[b-drxpessm19] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    height: 100%;
    /* Match parent height for proper alignment */
    min-height: 28px;
    /* Minimum height to maintain touch target */
}

/* Profile menu container */
.profile-menu[b-drxpessm19] {
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    /* iOS minimum touch target */
    min-width: 44px;
    /* iOS minimum touch target */
    padding: 8px;
    /* Ensure proper touch area around avatar */
}

/* Profile avatar styling */
.profile-avatar[b-drxpessm19] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder[b-drxpessm19] {
    width: 26px;
    /* Slightly smaller for better proportion in compact header */
    height: 26px;
    border-radius: 50%;
    background: var(--app-color-primary);
    /* ScoutBadger brand color */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    /* Slightly smaller font */
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    /* Subtle border */
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
    box-shadow: 0 2px 4px rgba(var(--app-primary-rgb), 0.20);
    /* Subtle brand color shadow */
}

/* Avatar hover/active states */
.profile-menu:active .avatar-placeholder[b-drxpessm19] {
    transform: scale(0.95);
}

/* Profile dropdown */
.profile-dropdown[b-drxpessm19] {
    position: absolute;
    top: 35px;
    right: 0;
    min-width: 200px;
    background: rgba(248, 248, 248, 0.95);
    border: 0.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    overflow: hidden;

    /* iOS-style backdrop blur */
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
}

/* Dropdown items */
.dropdown-item[b-drxpessm19] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s ease-out;
}

/* Dropdown header (user name) */
.dropdown-header[b-drxpessm19] {
    cursor: default;
    font-weight: 600;
    padding: 16px 16px 8px 16px;
}

.user-name[b-drxpessm19] {
    color: var(--app-color-primary);
    font-size: 15px;
}

/* Dropdown action items */
.dropdown-action[b-drxpessm19] {
    gap: 12px;
    font-weight: 400;
}

.dropdown-action:hover[b-drxpessm19] {
    background: rgba(0, 0, 0, 0.04);
}

.dropdown-action:active[b-drxpessm19] {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(0.98);
}

/* Destructive actions (e.g., logout) */
.dropdown-danger[b-drxpessm19] {
    color: #b42318;
}

.dropdown-danger:hover[b-drxpessm19] {
    background: rgba(180, 35, 24, 0.06);
}

.dropdown-danger:active[b-drxpessm19] {
    background: rgba(180, 35, 24, 0.10);
}

/* Dropdown divider */
.dropdown-divider[b-drxpessm19] {
    height: 0.5px;
    background: rgba(0, 0, 0, 0.12);
    margin: 4px 16px;
}

/* Dropdown icons */
.dropdown-icon[b-drxpessm19] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.6;
}

.dropdown-danger .dropdown-icon[b-drxpessm19] {
    opacity: 0.75;
}

/* Login button styling */
.login-button[b-drxpessm19] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 10px;
    min-height: 26px;
    /* Match avatar height for consistent appearance */
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    background: transparent;
    color: #000000;
    font-size: 11px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.15s ease-out;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    /* Ensure proper centering in the compact header */
    margin: 0;
}

.login-button:hover[b-drxpessm19] {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.2);
}

.login-button:active[b-drxpessm19] {
    background: rgba(0, 0, 0, 0.08);
    transform: scale(0.95);
}

.login-icon[b-drxpessm19] {
    width: 14px;
    height: 14px;
    opacity: 0.8;
    flex-shrink: 0;
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .avatar-placeholder[b-drxpessm19] {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .profile-dropdown[b-drxpessm19] {
        top: 40px;
    }

    .login-button[b-drxpessm19] {
        padding: 8px 16px;
        font-size: 14px;
    }

    .login-icon[b-drxpessm19] {
        width: 18px;
        height: 18px;
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 375px) {
    .avatar-placeholder[b-drxpessm19] {
        width: 22px;
        height: 22px;
        font-size: 9px;
        border-width: 1px;
    }

    .profile-menu[b-drxpessm19] {
        min-height: 40px;
        min-width: 40px;
        padding: 6px;
    }

    .profile-dropdown[b-drxpessm19] {
        min-width: 180px;
        top: 28px;
    }

    .login-button[b-drxpessm19] {
        padding: 4px 8px;
        font-size: 10px;
        gap: 3px;
        min-height: 22px;
    }

    .login-icon[b-drxpessm19] {
        width: 12px;
        height: 12px;
    }
}
/* /Shared/PublicLandingPage.razor.rz.scp.css */
/* ============================================================
   Environment Warning Banner
   ============================================================ */

.env-banner[b-szg8izl4q3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fffbf0;
    border-bottom: 2px solid var(--app-color-amber);
    padding: 0.75rem 1.5rem;
}

.env-banner-inner[b-szg8izl4q3] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.env-banner-icon[b-szg8izl4q3] {
    color: #b45309;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.env-banner-content[b-szg8izl4q3] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    font-size: 0.875rem;
    color: #92400e;
    line-height: 1.5;
}

.env-banner-content strong[b-szg8izl4q3] {
    font-weight: 700;
}

/* ============================================================
   Hero Section
   ============================================================ */

.landing-hero[b-szg8izl4q3] {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/BG_Icons_BW.svg');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
    display: flex;
    align-items: center;
}

.landing-overlay[b-szg8izl4q3] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
    pointer-events: none;
}

.landing-content[b-szg8izl4q3] {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 2rem 3rem;
}

/* ============================================================
   Two-Column Grid
   ============================================================ */

.landing-grid[b-szg8izl4q3] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================================
   Brand Section (left column)
   ============================================================ */

.brand-section[b-szg8izl4q3] {
    color: white;
    margin-top:0px;
    animation: fadeInLeft-b-szg8izl4q3 0.8s ease-out both;
}

.brand-badge[b-szg8izl4q3] {
    margin-bottom: 1.5rem;
}

.brand-logo-img[b-szg8izl4q3] {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.brand-title[b-szg8izl4q3] {
    font-size: 3.25rem;
    font-weight: 800;
    margin: 0 0 0.25rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}

.brand-subtitle[b-szg8izl4q3] {
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.01em;
}

.brand-description[b-szg8izl4q3] {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.80);
    margin: 0 0 2rem 0;
    max-width: 420px;
}

.brand-features[b-szg8izl4q3] {
    list-style: none;
    padding: 0 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.feature-item[b-szg8izl4q3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 500;
}

.feature-icon[b-szg8izl4q3] {
    font-size: 1.25rem;
    color: #4ade80;
    flex-shrink: 0;
}

/* ============================================================
   Login Card (right column)
   ============================================================ */

.login-card-wrapper[b-szg8izl4q3] {
    animation: slideInUp-b-szg8izl4q3 0.8s ease-out 0.15s both;
}

.login-card[b-szg8izl4q3] {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.20),
        0 4px 16px rgba(0, 0, 0, 0.10);
    padding: 2.75rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.login-card-header[b-szg8izl4q3] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-avatar-icon[b-szg8izl4q3] {
    font-size: 3.5rem;
    color: var(--app-color-primary);
    display: block;
    margin-bottom: 1rem;
}

.login-title[b-szg8izl4q3] {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--app-color-text-deep);
    margin: 0 0 0.625rem 0;
}

.login-subtitle[b-szg8izl4q3] {
    font-size: 0.9375rem;
    color: var(--app-color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Buttons */

.login-actions[b-szg8izl4q3] {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.btn-login-primary[b-szg8izl4q3],
.btn-login-secondary[b-szg8izl4q3] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-login-primary[b-szg8izl4q3] {
    background: linear-gradient(135deg, var(--app-color-primary) 0%, var(--app-color-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(var(--app-primary-rgb), 0.35);
}

.btn-login-primary:hover[b-szg8izl4q3] {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--app-primary-rgb), 0.45);
}

.btn-login-primary:active[b-szg8izl4q3] {
    transform: translateY(0);
}

.btn-login-secondary[b-szg8izl4q3] {
    background: #f7fafc;
    color: var(--app-color-text-strong);
    border: 1.5px solid var(--app-color-border);
}

.btn-login-secondary:hover[b-szg8izl4q3] {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.btn-icon[b-szg8izl4q3] {
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Divider */

.login-divider[b-szg8izl4q3] {
    position: relative;
    text-align: center;
}

.login-divider[b-szg8izl4q3]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--app-color-border);
}

.login-divider span[b-szg8izl4q3] {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    padding: 0 1rem;
    color: var(--app-color-text-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Help text */

.login-help[b-szg8izl4q3] {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--app-color-text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   Animations
   ============================================================ */

@keyframes fadeInLeft-b-szg8izl4q3 {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp-b-szg8izl4q3 {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
    /* Stack to single column; brand section is first in HTML so it renders first */
    .landing-grid[b-szg8izl4q3] {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 520px;
    }

    /* Let content flow from top instead of centering — prevents cut-off on short viewports */
    .landing-hero[b-szg8izl4q3] {
        align-items: flex-start;
    }

    .landing-content[b-szg8izl4q3] {
        padding: 5rem 1.25rem 3rem;
    }

    .brand-title[b-szg8izl4q3] {
        font-size: 2.25rem;
    }

    .brand-subtitle[b-szg8izl4q3] {
        font-size: 1.375rem;
    }

    .brand-description[b-szg8izl4q3] {
        max-width: none;
        font-size: 1rem;
    }

    /* Keep feature bullets as a vertical list on tablet/mobile */
    .brand-features[b-szg8izl4q3] {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 576px) {
    .landing-content[b-szg8izl4q3] {
        padding: 5.5rem 1rem 2.5rem;
    }

    .brand-badge[b-szg8izl4q3] {
        margin-bottom: 1rem;
    }

    .brand-logo-img[b-szg8izl4q3] {
        width: 64px;
        height: 64px;
    }

    .brand-title[b-szg8izl4q3] {
        font-size: 1.875rem;
    }

    .brand-subtitle[b-szg8izl4q3] {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .brand-description[b-szg8izl4q3] {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .login-card[b-szg8izl4q3] {
        padding: 1.75rem 1.25rem;
    }

    .login-title[b-szg8izl4q3] {
        font-size: 1.5rem;
    }

    .login-subtitle[b-szg8izl4q3] {
        font-size: 0.875rem;
    }

    /* Reduce env banner text on very small screens */
    .env-banner[b-szg8izl4q3] {
        padding: 0.625rem 1rem;
    }

    .env-banner-content[b-szg8izl4q3] {
        font-size: 0.8125rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-section[b-szg8izl4q3],
    .login-card-wrapper[b-szg8izl4q3] {
        animation: none;
    }
}
