/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-hgx6dz243b] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-hgx6dz243b] {
    flex: 1;
}

#blazor-error-ui[b-hgx6dz243b] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-hgx6dz243b] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/About.razor.rz.scp.css */
/* Page chrome and typography come from StaticPageShell; only About-specific
   pieces live here. */

.pull-quote[b-rc16vwo4cx] {
    margin: 1.5rem 0 0.5rem;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid #3b82f6;
    background: #111827;
    border-radius: 0 8px 8px 0;
    color: #e2e8f0;
    font-style: italic;
    line-height: 1.7;
}

section.about-cta[b-rc16vwo4cx] {
    text-align: center;
    background: #111827;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

/* Centre the shell's heading accent bar to match the centred CTA text */
section.about-cta > h2[b-rc16vwo4cx]::after {
    margin-left: auto;
    margin-right: auto;
}

.about-cta-buttons[b-rc16vwo4cx] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
/* /Components/Pages/CacheManagement.razor.rz.scp.css */
/* Cache Management Page Styles */

.cache-management-container[b-ji7njdc15n] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* Page header */
.page-header[b-ji7njdc15n] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-header h1[b-ji7njdc15n] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.page-subtitle[b-ji7njdc15n] {
    color: var(--text-secondary, #6c757d);
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
}

.page-header-actions[b-ji7njdc15n] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Cache cards grid */
.cache-grid[b-ji7njdc15n] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.25rem;
}

/* Cache card */
.cache-card[b-ji7njdc15n] {
    background: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s ease;
    overflow: hidden;
}

.cache-card:hover[b-ji7njdc15n] {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.cache-card-ready[b-ji7njdc15n] {
    border-left: 4px solid var(--color-success, #28a745);
}

.cache-card-warning[b-ji7njdc15n] {
    border-left: 4px solid var(--color-warning, #ffc107);
}

.cache-card-error[b-ji7njdc15n] {
    border-left: 4px solid var(--color-danger, #dc3545);
}

/* Card header */
.cache-card-header[b-ji7njdc15n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cache-card-title[b-ji7njdc15n] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cache-name[b-ji7njdc15n] {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Status indicator dot */
.status-indicator[b-ji7njdc15n] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.indicator-ready[b-ji7njdc15n] {
    background-color: var(--color-success, #28a745);
}

.indicator-warning[b-ji7njdc15n] {
    background-color: var(--color-warning, #ffc107);
}

.indicator-error[b-ji7njdc15n] {
    background-color: var(--color-danger, #dc3545);
}

/* Status badge */
.status-badge[b-ji7njdc15n] {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-ready[b-ji7njdc15n] {
    background-color: rgba(40, 167, 69, 0.2);
    color: #86efac;
}

.badge-warning[b-ji7njdc15n] {
    background-color: rgba(255, 193, 7, 0.2);
    color: #fcd34d;
}

.badge-error[b-ji7njdc15n] {
    background-color: rgba(220, 53, 69, 0.2);
    color: #fca5a5;
}

/* Card body stats */
.cache-card-body[b-ji7njdc15n] {
    padding: 0.75rem 1.25rem;
    flex: 1;
}

.stat-row[b-ji7njdc15n] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.875rem;
}

.stat-row:last-child[b-ji7njdc15n] {
    border-bottom: none;
}

.stat-label[b-ji7njdc15n] {
    color: #9ca3af;
}

.stat-value[b-ji7njdc15n] {
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.stat-value-good[b-ji7njdc15n] {
    color: var(--color-success, #28a745);
    font-weight: 600;
}

.stat-value-warn[b-ji7njdc15n] {
    color: var(--color-warning-text, #856404);
    font-weight: 600;
}

.stat-value-poor[b-ji7njdc15n] {
    color: var(--color-danger, #dc3545);
    font-weight: 600;
}

.stat-time[b-ji7njdc15n] {
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Card footer with actions */
.cache-card-footer[b-ji7njdc15n] {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Per-cache feedback */
.cache-feedback[b-ji7njdc15n] {
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.cache-feedback-loading[b-ji7njdc15n] {
    color: var(--color-info, #0d6efd);
}

.cache-feedback-success[b-ji7njdc15n] {
    color: var(--color-success, #28a745);
}

.cache-feedback-error[b-ji7njdc15n] {
    color: var(--color-danger, #dc3545);
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Loading and empty states */
.loading-state[b-ji7njdc15n],
.empty-state[b-ji7njdc15n] {
    color: #9ca3af;
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .page-header[b-ji7njdc15n] {
        flex-direction: column;
    }

    .page-header-actions[b-ji7njdc15n] {
        width: 100%;
        justify-content: flex-end;
    }

    .cache-grid[b-ji7njdc15n] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* Page chrome and typography come from StaticPageShell; only the form and its
   states live here. */

/* ─── Form layout ────────────────────────────────────────────────────── */
.form-row[b-5poocb1vxo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}

@media (max-width: 640px) {
    .form-row[b-5poocb1vxo] {
        grid-template-columns: 1fr;
    }
}

.form-field[b-5poocb1vxo] {
    margin-bottom: 1rem;
}

.form-field label[b-5poocb1vxo] {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #e5e7eb;
}

/* InputText/InputTextArea render inside child components, so ::deep is needed
   for the scoped styles to reach the actual input elements */
.form-field[b-5poocb1vxo]  input,
.form-field[b-5poocb1vxo]  textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #e5e7eb;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-field[b-5poocb1vxo]  input:focus,
.form-field[b-5poocb1vxo]  textarea:focus {
    outline: none;
    border-color: #60a5fa;
}

.form-field[b-5poocb1vxo]  input.invalid,
.form-field[b-5poocb1vxo]  textarea.invalid {
    border-color: #f87171;
}

.form-field[b-5poocb1vxo]  .validation-message {
    color: #f87171;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* ─── Spam trap ──────────────────────────────────────────────────────── */
/* Moved off-screen rather than display:none, which some bots check for */
.contact-extra-field[b-5poocb1vxo] {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ─── Captcha ────────────────────────────────────────────────────────── */
/* Reserve the widget's height up front so it doesn't shove the button down
   when the iframe arrives */
.captcha-field[b-5poocb1vxo] {
    min-height: 65px;
}

/* ─── Buttons and alerts ─────────────────────────────────────────────── */
.btn-submit[b-5poocb1vxo] {
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
}

.btn-submit:hover:not(:disabled)[b-5poocb1vxo] {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
}

.btn-submit:disabled[b-5poocb1vxo] {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-alert[b-5poocb1vxo] {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.4);
    color: #fca5a5;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

/* ─── Success state ──────────────────────────────────────────────────── */
.contact-success[b-5poocb1vxo] {
    text-align: center;
    padding: 1rem 1rem 0.5rem;
}

.contact-success .success-icon[b-5poocb1vxo] {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

/* div.contact-success outranks the shell's ::deep paragraph margin rule */
div.contact-success p[b-5poocb1vxo] {
    margin-bottom: 1.5rem;
}

.btn-send-another[b-5poocb1vxo] {
    background: rgba(255, 255, 255, 0.08);
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-send-another:hover[b-5poocb1vxo] {
    background: rgba(255, 255, 255, 0.15);
}
/* /Components/Pages/CookiePolicy.razor.rz.scp.css */
/* Page chrome and typography come from StaticPageShell; only the cookie table
   and inline code styling live here. */

code[b-lx3vrgjys4] {
    background: #111827;
    border: 1px solid #374151;
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    font-size: 0.85rem;
    color: #93c5fd;
    white-space: nowrap;
}

.table-scroll[b-lx3vrgjys4] {
    overflow-x: auto;
}

.table-scroll table[b-lx3vrgjys4] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.table-scroll th[b-lx3vrgjys4],
.table-scroll td[b-lx3vrgjys4] {
    text-align: left;
    padding: 0.75rem;
    border-bottom: 1px solid #374151;
    color: #d1d5db;
    vertical-align: top;
}

.table-scroll th[b-lx3vrgjys4] {
    background: #111827;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}
/* /Components/Pages/DerbyManagement.razor.rz.scp.css */
/* ─── Page container ─────────────────────────────────────────────────── */
.derby-management-container[b-2zf6x5m8zu] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.page-header h1[b-2zf6x5m8zu] {
    margin-bottom: 0.25rem;
}

.page-subtitle[b-2zf6x5m8zu] {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* ─── Toolbar (area selector row) ────────────────────────────────────── */
.derby-toolbar[b-2zf6x5m8zu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ─── Selection bar ──────────────────────────────────────────────────── */
.derby-selection-bar[b-2zf6x5m8zu] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #1e2433;
    border-radius: 12px;
    flex-wrap: wrap;
}

.derby-slot[b-2zf6x5m8zu] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 180px;
    max-width: 320px;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    min-height: 48px;
    transition: border-color 0.2s;
}

.derby-slot.slot-filled[b-2zf6x5m8zu] {
    border-style: solid;
    background: rgba(255, 255, 255, 0.08);
}

.derby-slot-a.slot-filled[b-2zf6x5m8zu] {
    border-color: #60a5fa;
}

.derby-slot-b.slot-filled[b-2zf6x5m8zu] {
    border-color: #34d399;
}

.slot-crest[b-2zf6x5m8zu] {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.slot-name[b-2zf6x5m8zu] {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slot-label[b-2zf6x5m8zu] {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.slot-hint[b-2zf6x5m8zu] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 0.25rem;
}

.derby-vs[b-2zf6x5m8zu] {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.derby-slot-actions[b-2zf6x5m8zu] {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: auto;
}

/* ─── Filter input ───────────────────────────────────────────────────── */
.derby-filter[b-2zf6x5m8zu] {
    max-width: 260px;
}

/* ─── Scrollable team grid ───────────────────────────────────────────── */
.team-grid-pane[b-2zf6x5m8zu] {
    height: 340px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem;
    background: #f9fafb;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 6px;
}

.team-grid-group-header[b-2zf6x5m8zu] {
    width: 100%;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    padding: 4px 4px 2px;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 4px;
}

.team-grid-group-header:first-child[b-2zf6x5m8zu] {
    margin-top: 0;
}

/* ─── Team tile ──────────────────────────────────────────────────────── */
.team-tile[b-2zf6x5m8zu] {
    width: 160px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 500;
    color: #111827;
    text-align: left;
    position: relative;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    overflow: hidden;
}

.team-tile:hover[b-2zf6x5m8zu] {
    border-color: #9ca3af;
    background: #f3f4f6;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.team-tile.tile-a[b-2zf6x5m8zu] {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1d4ed8;
}

.team-tile.tile-b[b-2zf6x5m8zu] {
    border-color: #10b981;
    background: #ecfdf5;
    color: #065f46;
}

.tile-crest[b-2zf6x5m8zu] {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.tile-name[b-2zf6x5m8zu] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tile-badge[b-2zf6x5m8zu] {
    position: absolute;
    top: 3px;
    right: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    line-height: 1;
    padding: 1px 4px;
    border-radius: 4px;
    letter-spacing: 0;
}

.badge-a[b-2zf6x5m8zu] {
    background: #3b82f6;
    color: #fff;
}

.badge-b[b-2zf6x5m8zu] {
    background: #10b981;
    color: #fff;
}

/* ─── Pairings list ──────────────────────────────────────────────────── */
.derby-pairings-section[b-2zf6x5m8zu] {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
}

.derby-pairings-header[b-2zf6x5m8zu] {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.derby-pairings-header h3[b-2zf6x5m8zu] {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.derby-pairs-list[b-2zf6x5m8zu] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.derby-pair-row[b-2zf6x5m8zu] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    transition: background 0.15s;
}

.derby-pair-row.pair-row-confirming[b-2zf6x5m8zu] {
    background: #fef9ec;
    border-color: #fbbf24;
}

.pair-team[b-2zf6x5m8zu] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.pair-crest[b-2zf6x5m8zu] {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.pair-name[b-2zf6x5m8zu] {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pair-vs[b-2zf6x5m8zu] {
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.pair-actions[b-2zf6x5m8zu] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.pair-confirm-text[b-2zf6x5m8zu] {
    font-size: 0.8rem;
    color: #b45309;
    font-weight: 500;
}
/* /Components/Pages/Terms.razor.rz.scp.css */
/* Page chrome and typography come from StaticPageShell; only Terms-specific
   pieces (intro, table of contents, disclaimer highlight) live here. */

p.legal-intro[b-6b4tmyocgj] {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

/* ─── Table of contents ──────────────────────────────────────────────── */
.legal-toc[b-6b4tmyocgj] {
    background: #111827;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}

/* nav.legal-toc outranks the shell's ::deep h2 rule */
nav.legal-toc h2[b-6b4tmyocgj] {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.legal-toc ol[b-6b4tmyocgj] {
    columns: 2;
    column-gap: 2rem;
    padding-left: 1.25rem;
    margin: 0;
}

.legal-toc li[b-6b4tmyocgj] {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* ─── Highlighted disclaimer section ─────────────────────────────────── */
section.legal-section-highlight[b-6b4tmyocgj] {
    background-color: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
}

@media (max-width: 640px) {
    .legal-toc ol[b-6b4tmyocgj] {
        columns: 1;
    }
}
/* /Components/Shared/StaticPageShell.razor.rz.scp.css */
.static-page[b-ejwc9uhemu] {
    max-width: 800px;
    margin: 2.5rem auto 4rem;
    padding: 0 1.25rem;
}

.static-page-card[b-ejwc9uhemu] {
    background: #1f2937;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Same gradient as the home page hero so these pages feel like part of the site */
.static-page-hero[b-ejwc9uhemu] {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.static-page-hero h1[b-ejwc9uhemu] {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.static-page-tagline[b-ejwc9uhemu] {
    margin: 0.6rem auto 0;
    max-width: 34rem;
    opacity: 0.92;
    font-size: 1.05rem;
    line-height: 1.5;
}

.static-page-body[b-ejwc9uhemu] {
    padding: 2.5rem;
}

/* Shared typography for page content. The child markup lives in the consuming
   component, so ::deep is required for these rules to reach it. */

.static-page-body[b-ejwc9uhemu]  section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 90px; /* keep anchor targets clear of the sticky navbar */
}

.static-page-body[b-ejwc9uhemu]  section:last-child {
    margin-bottom: 0;
}

.static-page-body[b-ejwc9uhemu]  h2 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.static-page-body[b-ejwc9uhemu]  section > h2::after {
    content: '';
    display: block;
    width: 2.25rem;
    height: 3px;
    margin-top: 0.55rem;
    border-radius: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.static-page-body[b-ejwc9uhemu]  h3 {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #e5e7eb;
}

.static-page-body[b-ejwc9uhemu]  p,
.static-page-body[b-ejwc9uhemu]  li {
    color: #d1d5db;
    line-height: 1.7;
}

.static-page-body[b-ejwc9uhemu]  p {
    margin: 0 0 1rem;
}

.static-page-body[b-ejwc9uhemu]  p:last-child {
    margin-bottom: 0;
}

.static-page-body[b-ejwc9uhemu]  ul,
.static-page-body[b-ejwc9uhemu]  ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.static-page-body[b-ejwc9uhemu]  li {
    margin-bottom: 0.6rem;
}

.static-page-body[b-ejwc9uhemu]  li:last-child {
    margin-bottom: 0;
}

.static-page-body[b-ejwc9uhemu]  strong {
    color: #ffffff;
}

.static-page-body[b-ejwc9uhemu]  em {
    color: #e2e8f0;
}

/* Buttons (.btn-*) keep their own global styling */
.static-page-body[b-ejwc9uhemu]  a:not([class*="btn"]) {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.static-page-body[b-ejwc9uhemu]  a:not([class*="btn"]):hover {
    color: #93c5fd;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .static-page[b-ejwc9uhemu] {
        margin: 1.25rem auto 2.5rem;
        padding: 0 1rem;
    }

    .static-page-hero[b-ejwc9uhemu] {
        padding: 2.25rem 1.5rem;
    }

    .static-page-hero h1[b-ejwc9uhemu] {
        font-size: 1.75rem;
    }

    .static-page-body[b-ejwc9uhemu] {
        padding: 1.5rem;
    }
}
