/* /Components/ContactForm.razor.rz.scp.css */
/* =====================================================================
   ContactForm — public contact form (Plan 03-05; migrated F14 Plan 14-01)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/03-public-site-foundation/artifacts/
           03-05-contact.html (Open Design prototype, 2026-05-15)

   F14 Plan 14-01 dogfood migration: every raw var(--color-*) reference
   has been replaced with the matching semantic token from the new
   semantic layer in design-tokens.css. Zero raw refs remain. The two
   rgba(...) literals (focus halo, hover glow) stay — they're alpha
   overlays, intentional non-token; TD-035 captures them for a future
   alpha-token consideration.
   ===================================================================== */

.contact-form[b-jvvrru47us] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 560px;
}

/* ──────────────────────────────────────────
   ①  FIELDS — label + input + validation
   ────────────────────────────────────────── */
.field[b-jvvrru47us] {
    display: flex;
    flex-direction: column;
}

.field label[b-jvvrru47us] {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--text-heading);
    opacity: 0.85;
    margin-bottom: var(--space-2);
}

.field label .optional[b-jvvrru47us] {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.7;
    margin-left: var(--space-2);
}

.field[b-jvvrru47us]  input,
.field[b-jvvrru47us]  textarea {
    width: 100%;
    box-sizing: border-box;
    padding: var(--space-3);
    background-color: var(--surface-page-bg);
    color: var(--text-body);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

.field[b-jvvrru47us]  input:focus,
.field[b-jvvrru47us]  textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(200, 35, 27, 0.15);
}

.field[b-jvvrru47us]  textarea {
    resize: vertical;
    min-height: 132px;
}

.field[b-jvvrru47us]  .validation-message {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--validation-error);
    margin-top: var(--space-1);
}

/* ──────────────────────────────────────────
   ②  HONEYPOT — must remain in DOM, offscreen
   Use position-offscreen NOT display:none —
   some bots specifically check for the latter
   and skip those fields.
   ────────────────────────────────────────── */
.honeypot[b-jvvrru47us] {
    position: absolute;
    left: -9999px;
    top: auto;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}

/* ──────────────────────────────────────────
   ③  STATUS MESSAGE SLOT
   ────────────────────────────────────────── */
.form-status[b-jvvrru47us] {
    padding: var(--space-3);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.4;
}

.form-status.ok[b-jvvrru47us] {
    background-color: var(--surface-page-bg);
    color: var(--text-body);
    border: 1px solid var(--border-on-dark);
}

.form-status.err[b-jvvrru47us] {
    background-color: var(--state-error-bg);
    color: var(--state-error-fg);
    border: 1px solid var(--state-error-border);
}

/* ──────────────────────────────────────────
   ④  SUBMIT — chrome-polish with inverted shadow
   ────────────────────────────────────────── */
.submit[b-jvvrru47us] {
    align-self: flex-start;
    background: var(--gradient-chrome-polish);
    /* V1.3 light-mode flip: chrome button needs dark text. --text-heading
       is lacquer-black in light mode = correct contrast on chrome gradient. */
    color: var(--text-heading);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    padding: var(--space-3) var(--space-6);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: var(--shadow-chrome-top), var(--shadow-chrome-bottom);
    transition: background 120ms ease, box-shadow 160ms ease, transform 80ms ease;
}

.submit:hover[b-jvvrru47us] {
    background: var(--gradient-chrome-hot);
    box-shadow:
        var(--shadow-chrome-top),
        var(--shadow-chrome-bottom),
        0 0 24px rgba(30, 216, 255, 0.35);
}

.submit:active[b-jvvrru47us] {
    transform: translateY(1px);
}

.submit:disabled[b-jvvrru47us] {
    background: var(--gradient-chrome-dim);
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: var(--shadow-chrome-top), var(--shadow-chrome-bottom);
}
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* ─── Shell ──────────────────────────────────────────────────────── */
.admin-shell[b-i9nnty7mo6] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background: var(--admin-bg);
    color: var(--admin-text);
    font-family: var(--admin-font-body);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.admin-shell[b-i9nnty7mo6]  * {
    box-sizing: border-box;
}

.admin-shell[b-i9nnty7mo6]  :focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--admin-bg), 0 0 0 4px rgba(224, 224, 232, 0.7);
}

/* ─── Topbar ─────────────────────────────────────────────────────── */
.admin-topbar[b-i9nnty7mo6] {
    height: var(--admin-topbar-h);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 20px;
    background: var(--admin-bg);
    position: relative;
    z-index: 30;
    border-bottom: 1px solid var(--admin-border);
}

/* Chrome strip under the topbar — radial-feathered horizontal gradient */
.admin-topbar[b-i9nnty7mo6]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--admin-chrome-lo) 15%,
        var(--admin-chrome-hi) 50%,
        var(--admin-chrome-lo) 85%,
        transparent 100%
    );
    opacity: 0.6;
}

/* ─── Wordmark ───────────────────────────────────────────────────── */
.admin-wordmark[b-i9nnty7mo6] {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--admin-text);
    user-select: none;
    line-height: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.admin-wordmark-divider[b-i9nnty7mo6] {
    color: var(--admin-text-dim);
    font-weight: 400;
    margin: 0 7px;
    letter-spacing: 0;
}

.admin-wordmark-tag[b-i9nnty7mo6] {
    color: var(--admin-text-muted);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.10em;
}

/* ─── User area (right side of topbar) ───────────────────────────── */
.admin-user-area[b-i9nnty7mo6] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-user-email[b-i9nnty7mo6] {
    font-size: 12px;
    font-weight: 400;
    color: var(--admin-text-muted);
    letter-spacing: 0.01em;
}

.admin-signout-form[b-i9nnty7mo6] {
    margin: 0;
}

.admin-signout-btn[b-i9nnty7mo6] {
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--admin-text-muted);
    background: transparent;
    border: 1px solid var(--admin-border);
    padding: 6px 13px;
    border-radius: 2px;
    cursor: pointer;
    transition: color 100ms ease, border-color 100ms ease;
    line-height: 1;
    text-decoration: none;
    display: inline-block;
}

.admin-signout-btn:hover[b-i9nnty7mo6] {
    color: var(--admin-text);
    border-color: var(--admin-chrome-lo);
}

/* ─── Body row (sidebar + content) ───────────────────────────────── */
.admin-body-row[b-i9nnty7mo6] {
    display: flex;
    flex: 1;
    min-height: 0;
}

/* ─── Content area ───────────────────────────────────────────────── */
.admin-content[b-i9nnty7mo6] {
    flex: 1;
    overflow-y: auto;
    background: var(--admin-bg);
    padding: 36px 44px;
}

.admin-content[b-i9nnty7mo6]::-webkit-scrollbar {
    width: 6px;
}

.admin-content[b-i9nnty7mo6]::-webkit-scrollbar-track {
    background: var(--admin-bg);
}

.admin-content[b-i9nnty7mo6]::-webkit-scrollbar-thumb {
    background: var(--admin-border-raised);
    border-radius: 3px;
}

.admin-content[b-i9nnty7mo6]::-webkit-scrollbar-thumb:hover {
    background: var(--admin-text-dim);
}

@media (prefers-reduced-motion: reduce) {
    .admin-shell[b-i9nnty7mo6],
    .admin-shell[b-i9nnty7mo6]  *,
    .admin-shell[b-i9nnty7mo6]  *::before,
    .admin-shell[b-i9nnty7mo6]  *::after {
        transition-duration: 0.01ms !important;
    }
}
/* /Components/Layout/AdminNavMenu.razor.rz.scp.css */
.admin-sidebar[b-p4b6ct6i9t] {
    width: var(--admin-sidebar-w);
    flex-shrink: 0;
    background-color: var(--admin-bg);
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 7px,
        rgba(255, 255, 255, 0.018) 7px,
        rgba(255, 255, 255, 0.018) 8px
    );
    position: relative;
    z-index: 20;
    padding: 22px 0 24px;
    overflow: visible;
}

/* Vertical chrome strip down the right edge of the sidebar */
.admin-sidebar[b-p4b6ct6i9t]::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        var(--admin-border) 0%,
        var(--admin-chrome-lo) 25%,
        var(--admin-chrome-hi) 55%,
        var(--admin-chrome-lo) 80%,
        var(--admin-border) 100%
    );
    pointer-events: none;
}

.admin-nav-section-label[b-p4b6ct6i9t] {
    font-family: var(--admin-font-display);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--admin-text-dim);
    padding: 0 20px 6px;
    margin: 0;
}

.admin-nav-divider[b-p4b6ct6i9t] {
    height: 1px;
    background: var(--admin-border);
    margin: 10px 20px;
}

.admin-nav-list[b-p4b6ct6i9t] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav-list[b-p4b6ct6i9t]  li {
    position: relative;
}

/* ─── admin-nav-item ─────────────────────────────────────────────── */
[b-p4b6ct6i9t] .admin-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-family: var(--admin-font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--admin-text-muted);
    cursor: pointer;
    position: relative;
    transition: color 100ms ease, background-color 100ms ease;
    user-select: none;
    text-decoration: none;
}

[b-p4b6ct6i9t] a.admin-nav-item {
    color: var(--admin-text-muted);
}

[b-p4b6ct6i9t] .admin-nav-item:not(.admin-nav-item--active):not(.admin-nav-item--disabled):hover {
    color: var(--admin-text);
    background: rgba(255, 255, 255, 0.04);
}

[b-p4b6ct6i9t] .admin-nav-item--active {
    color: var(--admin-text);
    background: rgba(255, 255, 255, 0.055);
    font-weight: 500;
}

[b-p4b6ct6i9t] .admin-nav-item--active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--admin-chrome-hi) 0%, var(--admin-chrome-lo) 100%);
    border-radius: 0 1px 1px 0;
}

[b-p4b6ct6i9t] .admin-nav-item--disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

[b-p4b6ct6i9t] .admin-nav-item--disabled:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--admin-surface-raised);
    color: var(--admin-text-muted);
    font-size: 11px;
    font-weight: 400;
    font-family: var(--admin-font-body);
    padding: 5px 10px;
    border-radius: 2px;
    white-space: nowrap;
    border: 1px solid var(--admin-border-raised);
    z-index: 100;
    pointer-events: none;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

[b-p4b6ct6i9t] .admin-nav-item--disabled:hover::before {
    content: '';
    position: absolute;
    left: calc(100% + 4px);
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--admin-surface-raised);
    z-index: 101;
    pointer-events: none;
}

[b-p4b6ct6i9t] .admin-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.04em;
    color: var(--admin-text-dim);
    flex-shrink: 0;
}

[b-p4b6ct6i9t] .admin-nav-text {
    flex: 1;
}
/* /Components/Layout/AdminPreAuthLayout.razor.rz.scp.css */
/* V02 F04 Plan 04-04 — Admin pre-auth layout scoped CSS.
   Sourced from the OD artifact at
   .planning/features/v02/04-turnstile-admin-login-polish/artifacts/
   04-04-admin-pre-auth-layout.html. Translated to semantic tokens per
   V01 F16 / V02 F03 design-tokens invariant — NO raw color literals,
   only var(--surface-*) / var(--text-*) / var(--accent-*) / var(--border-*). */

/* ----- Outer flex column so footer pins to the bottom ----- */
.admin-preauth[b-95lr35028e] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--surface-page-bg);
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
}

/* ----- Header band (dark with red rule) ----- */
.admin-preauth-header[b-95lr35028e] {
    position: relative;
    background: var(--surface-inverse-bg);
    border-bottom: 4px solid var(--accent-primary);
    padding: var(--space-5) var(--space-12) var(--space-6);
}

.admin-preauth-header[b-95lr35028e]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 1px;
    background: rgba(244, 244, 245, 0.18);
    pointer-events: none;
}

.admin-preauth-header-inner[b-95lr35028e] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.admin-preauth-wordmark[b-95lr35028e] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    padding: 6px 8px;
    margin-left: -8px;
    color: var(--text-heading-inverse);
}

.admin-preauth-wordmark img[b-95lr35028e] {
    display: block;
    width: 246px;
    height: 55px;
    object-fit: contain;
}

.admin-preauth-wordmark:focus-visible[b-95lr35028e] {
    outline: none;
    box-shadow:
        0 0 0 2px var(--surface-inverse-bg),
        0 0 0 4px var(--focus-ring);
}

/* ----- Main: centered card area; flex:1 pushes footer down ----- */
.admin-preauth-main[b-95lr35028e] {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-16) var(--space-6);
}

/* ----- Footer band (dark, minimal) ----- */
.admin-preauth-footer[b-95lr35028e] {
    flex-shrink: 0;
    position: relative;
    background: var(--surface-inverse-bg);
    color: var(--text-body-inverse);
    padding: var(--space-6) var(--space-12);
    border-top: 1px solid var(--border-on-light);
}

.admin-preauth-footer-inner[b-95lr35028e] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.admin-preauth-footer-line[b-95lr35028e] {
    margin: 0;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-body-inverse);
}

.admin-preauth-footer-line .admin-preauth-sep[b-95lr35028e] {
    color: var(--text-muted-inverse);
    margin: 0 8px;
}

.admin-preauth-footer-line .admin-preauth-version[b-95lr35028e] {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted-inverse);
    font-variant-numeric: tabular-nums;
}

.admin-preauth-footer-line a[b-95lr35028e] {
    color: var(--text-body-inverse);
    border-bottom: 1px solid transparent;
    transition: color 120ms, border-color 120ms;
}

.admin-preauth-footer-line a:hover[b-95lr35028e] {
    color: var(--link-hover);
    border-bottom-color: rgba(30, 216, 255, 0.6);
}

.admin-preauth-footer-line a:focus-visible[b-95lr35028e] {
    outline: none;
    border-radius: var(--radius-sm);
    box-shadow:
        0 0 0 2px var(--surface-inverse-bg),
        0 0 0 4px var(--focus-ring);
}

/* ----- Responsive breakpoints (match MainLayout cadence) ----- */
@media (max-width: 768px) {
    .admin-preauth-header[b-95lr35028e] {
        padding: 18px 24px 22px;
    }
    .admin-preauth-footer[b-95lr35028e] {
        padding: 24px 24px;
    }
}

@media (max-width: 600px) {
    .admin-preauth-main[b-95lr35028e] {
        padding: 40px 16px;
    }
    .admin-preauth-header-inner[b-95lr35028e] {
        justify-content: center;
    }
    .admin-preauth-wordmark[b-95lr35028e] {
        margin-left: 0;
    }
    .admin-preauth-footer-inner[b-95lr35028e] {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .admin-preauth-wordmark img[b-95lr35028e] {
        width: 200px;
        height: 45px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* =====================================================================
   MainLayout — scoped styles (migrated to F14 semantic tokens, Plan 14-05)
   ---------------------------------------------------------------------
   Source artifact: 03-02-mainlayout.html (run c081e1e0)
   F14 Plan 14-05 migration: every raw var(--color-*) reference has been
   replaced with the matching semantic token from the new semantic layer
   in design-tokens.css. Zero raw refs remain. The chrome-polish gradient
   on the header preserves its existing tokenized form
   (var(--gradient-chrome-polish)) — gradients are intentionally typed at
   the raw level for backwards compatibility with the chrome typography
   recipe.

   Additions for F14 scope 3 (footer additions):
     .footer-extras       — donation + sponsor row
     .footer-donation     — Donate-mailto CTA (or operator-set Stripe URL)
     .footer-donation-cta — CTA chip
     .footer-sponsor      — KuzmackSuites credit
     .footer-version      — version string from version.props via Config["AppInfo:Version"]
     .footer-attribution  — site-designed-by KuzmackSuites line
   ===================================================================== */

.layout[b-vvyoeecl3p] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---------------------------------------------------------------------
   Header — Chrome Band
   V1.3 light-mode flip: bottom rule switched from page-bg (cream-on-
   cream, invisible) to accent-primary (hot-rod-red) — the classic
   sandwich line between header and content.
   --------------------------------------------------------------------- */
.layout-header[b-vvyoeecl3p] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--gradient-chrome-polish);
    border-radius: 0;
    border-bottom: 4px solid var(--accent-primary);
    box-shadow:
        var(--shadow-chrome-top),
        var(--shadow-chrome-bottom);
}

.layout-header-inner[b-vvyoeecl3p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-16);
    height: 72px;
}

/* ---------------------------------------------------------------------
   Logo — dark text on light chrome header (V1.3 light-mode flip).
   --text-heading is now lacquer-black in light mode, which is the
   correct contrast against the chrome-polish gradient.
   --------------------------------------------------------------------- */
.logo[b-vvyoeecl3p] {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: var(--tracking-normal);
    text-transform: uppercase;
    color: var(--text-heading);
    line-height: 1;
    white-space: nowrap;
}

.logo:hover[b-vvyoeecl3p] { color: var(--text-heading); }

.logo-tick[b-vvyoeecl3p] { color: var(--accent-primary); }

.logo-img[b-vvyoeecl3p] {
    display: block;
    height: auto;
    width: 246px;
    max-width: 100%;
}

@media (max-width: 640px) {
    .logo-img[b-vvyoeecl3p] {
        width: 200px;
    }
}

/* ---------------------------------------------------------------------
   Main content slot — cream page after V1.3 light-mode flip.
   --------------------------------------------------------------------- */
.layout-main[b-vvyoeecl3p] {
    flex: 1;
    background-color: var(--surface-page-bg);
}

.layout-main:focus[b-vvyoeecl3p] { outline: none; }

/* ---------------------------------------------------------------------
   Footer — Onyx Band. Stays DARK after V1.3 light-mode flip (the
   vintage-poster contrast band at the bottom of a cream page). All
   footer text colors switched to the *-inverse variants.
   --------------------------------------------------------------------- */
.layout-footer[b-vvyoeecl3p] {
    background-color: var(--surface-inverse-bg);
    border-top: 1px solid var(--border-on-light);
}

.layout-footer-inner[b-vvyoeecl3p] {
    max-width: 1320px;
    margin: 0 auto;
    padding: var(--space-16) var(--space-16) var(--space-12);
}

.footer-columns[b-vvyoeecl3p] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-12);
    align-items: start;
    padding-bottom: var(--space-10);
    border-bottom: 1px solid var(--border-on-light);
}

.footer-label[b-vvyoeecl3p] {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: var(--space-3);
}

.footer-about p[b-vvyoeecl3p] {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-body-inverse);
    max-width: 320px;
}

.footer-contact[b-vvyoeecl3p] { text-align: center; }
.footer-social[b-vvyoeecl3p]  { text-align: right; }
.footer-social .footer-label[b-vvyoeecl3p] { text-align: right; }

.footer-link[b-vvyoeecl3p] {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--link-on-dark);
    text-decoration: underline;
    transition: color var(--duration-fast) var(--easing-standard);
}
.footer-link:hover[b-vvyoeecl3p] {
    color: var(--link-hover);
    text-decoration: none;
}

/* ---------------------------------------------------------------------
   F14 Plan 14-05 — Donation + Sponsor row (dark band, V1.3)
   --------------------------------------------------------------------- */
.footer-extras[b-vvyoeecl3p] {
    display: grid;
    /* F16 Plan 16-02: extended from 2 columns to 3 to host the
       FooterSisterClubCluster (TD-034 fold). Empty-state cluster renders
       nothing — visual collapse to 2 occupied cells is acceptable; the
       grid still allocates a third track but it stays empty. */
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--border-on-light);
}

.footer-donation-tagline[b-vvyoeecl3p] {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted-inverse);
    margin: 0 0 var(--space-3);
}

.footer-donation-cta[b-vvyoeecl3p] {
    display: inline-block;
    background-color: var(--cta-bg);
    color: var(--cta-text);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-md);
    transition: background-color var(--duration-fast) var(--easing-standard);
}

.footer-donation-cta:hover[b-vvyoeecl3p],
.footer-donation-cta:focus[b-vvyoeecl3p] {
    background-color: var(--cta-bg-hover);
    outline: none;
}

.footer-sponsor[b-vvyoeecl3p] {
    text-align: right;
}

.footer-sponsor .footer-label[b-vvyoeecl3p] {
    text-align: right;
}

.footer-sponsor-link[b-vvyoeecl3p] {
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    color: var(--text-muted-inverse);
}

.footer-sponsor-link:hover[b-vvyoeecl3p] {
    color: var(--link-on-dark);
}

/* ---------------------------------------------------------------------
   Copyright + attribution row (dark footer band, V1.3)
   --------------------------------------------------------------------- */
.footer-copyright[b-vvyoeecl3p] {
    padding-top: var(--space-6);
    text-align: center;
}

.footer-copyright p[b-vvyoeecl3p] {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--text-body-inverse);
    margin: 0 0 var(--space-2);
}

.footer-tick[b-vvyoeecl3p] { color: var(--accent-primary); }

.footer-version[b-vvyoeecl3p] {
    color: var(--text-muted-inverse);
    font-weight: 400;
    letter-spacing: var(--tracking-wide);
}

.footer-attribution[b-vvyoeecl3p] {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text-muted-inverse) !important;
    margin: var(--space-2) 0 0 !important;
}

.footer-attribution a[b-vvyoeecl3p] {
    color: var(--link-on-dark);
    text-decoration: underline;
}

.footer-attribution a:hover[b-vvyoeecl3p] {
    color: var(--link-hover);
}

/* ---------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------- */
@media (max-width: 1023px) {
    .layout-header-inner[b-vvyoeecl3p] { padding: 0 var(--space-12); }
    .layout-footer-inner[b-vvyoeecl3p] { padding: var(--space-12) var(--space-12) var(--space-10); }
    .footer-columns[b-vvyoeecl3p]      { gap: var(--space-8); }
    .footer-extras[b-vvyoeecl3p]       { gap: var(--space-8); }
}

@media (max-width: 767px) {
    .layout-header-inner[b-vvyoeecl3p] { padding: 0 var(--space-6); height: 64px; }
    .logo[b-vvyoeecl3p]                { font-size: 28px; }

    .layout-footer-inner[b-vvyoeecl3p] { padding: var(--space-10) var(--space-6) var(--space-8); }
    .footer-columns[b-vvyoeecl3p] {
        grid-template-columns: 1fr;
        gap: var(--space-7, 28px);
    }
    .footer-social[b-vvyoeecl3p],
    .footer-social .footer-label[b-vvyoeecl3p] { text-align: left; }
    .footer-contact[b-vvyoeecl3p]              { text-align: left; }

    .footer-extras[b-vvyoeecl3p] {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    .footer-sponsor[b-vvyoeecl3p],
    .footer-sponsor .footer-label[b-vvyoeecl3p] { text-align: left; }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* =====================================================================
   NavMenu — horizontal primary nav inside chrome header band
   ===================================================================== */

.navmenu[b-cvexzofce3] {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link[b-cvexzofce3] {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    /* V1.3 light-mode flip: nav sits on light chrome-polish header band.
       --text-heading resolves to lacquer-black in light mode = dark text
       on chrome (comfortably AA). The TD-022 a11y note about Tripod
       purple on dark plum is obsolete now that the page is cream. */
    color: var(--text-heading);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    transition: color var(--duration-fast) var(--easing-standard),
                border-color var(--duration-fast) var(--easing-standard);
}

.nav-link:hover[b-cvexzofce3] {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
    text-decoration: underline;
}

.nav-link-disabled[b-cvexzofce3],
.nav-link-disabled:hover[b-cvexzofce3] {
    color: var(--text-muted);
    cursor: not-allowed;
    border-bottom-color: transparent;
    pointer-events: none;
}

/* ---------------------------------------------------------------------
   Responsive — tighter spacing at narrow widths
   --------------------------------------------------------------------- */
@media (max-width: 1023px) {
    .navmenu[b-cvexzofce3]  { gap: var(--space-6); }
    .nav-link[b-cvexzofce3] { font-size: 14px; }
}

@media (max-width: 767px) {
    /* v1 ships desktop nav only; mobile drawer lands later. */
    .navmenu[b-cvexzofce3] {
        gap: var(--space-3);
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 60vw;
    }
    .nav-link[b-cvexzofce3] { font-size: 12px; }
}
/* /Components/Pages/Admin/AuditLog/Index.razor.rz.scp.css */
/*
    V02 F02 plan 02-04 — scoped CSS for /admin/audit-log.
    OD artifact: .planning/features/v02/02-observability-pass/od-artifacts/audit-log-viewer.html
    Tokens (--paper, --paper-stripe, --red-accent, etc.) inherit from
    AdminLayout.razor.css; this file owns only the audit-page-local classes.
*/

[b-1jcv0yg4ok] .visually-hidden {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

[b-1jcv0yg4ok] .audit-filter-band {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    padding: 16px 18px;
    margin: 18px 0 12px 0;
    background: #f8f3e3;
    border: 1px solid #cdbf99;
    border-radius: 4px;
}

[b-1jcv0yg4ok] .audit-filter-band .filter-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

[b-1jcv0yg4ok] .audit-filter-band .filter-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #615b50;
}

[b-1jcv0yg4ok] .audit-filter-band .filter-control {
    font-family: inherit;
    font-size: 13px;
    color: #1a1a1a;
    background: #fffaf0;
    border: 1px solid #cdbf99;
    border-radius: 3px;
    padding: 6px 9px;
    min-width: 160px;
}

[b-1jcv0yg4ok] .audit-filter-band .filter-control:focus-visible {
    outline: 2px solid #d4332a;
    outline-offset: 1px;
}

[b-1jcv0yg4ok] .audit-filter-band .filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

[b-1jcv0yg4ok] .audit-filter-band .btn-apply {
    background: #d4332a;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 0;
    border-radius: 3px;
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.14s;
}

[b-1jcv0yg4ok] .audit-filter-band .btn-apply:hover { background: #a91a14; }
[b-1jcv0yg4ok] .audit-filter-band .btn-apply:focus-visible { outline: 2px solid #1a1a1a; outline-offset: 2px; }

[b-1jcv0yg4ok] .audit-filter-band .btn-clear {
    font-size: 12px;
    color: #615b50;
    text-decoration: underline;
}
[b-1jcv0yg4ok] .audit-filter-band .btn-clear:hover { color: #1a1a1a; }

[b-1jcv0yg4ok] .audit-result-count {
    margin: 6px 4px 10px;
    font-size: 12px;
    color: #615b50;
    letter-spacing: 0.02em;
}
[b-1jcv0yg4ok] .audit-result-count .count-num {
    font-family: ui-monospace, 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    color: #1a1a1a;
    font-weight: 600;
}

[b-1jcv0yg4ok] .ledger-panel {
    background: #f3ead6;
    border: 1px solid #cdbf99;
    border-radius: 4px;
    overflow-x: auto;
}

[b-1jcv0yg4ok] .audit-table {
    width: 100%;
    border-collapse: collapse;
    color: #1a1a1a;
}

[b-1jcv0yg4ok] .audit-table thead th {
    background: linear-gradient(180deg, #d8d6d1 0%, #c9ccd1 100%);
    color: #1a1a1a;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-bottom: 1px solid #b4a87f;
}
[b-1jcv0yg4ok] .audit-table thead th .th-suffix { opacity: 0.55; font-weight: 600; }

[b-1jcv0yg4ok] .audit-table tbody tr { background: #f3ead6; }
[b-1jcv0yg4ok] .audit-table tbody tr:nth-child(even) { background: #ece2c6; }
[b-1jcv0yg4ok] .audit-table tbody tr:hover { background: rgba(212, 51, 42, 0.07); }

[b-1jcv0yg4ok] .audit-table tbody td {
    padding: 9px 14px;
    font-size: 13px;
    border-bottom: 1px solid #ddd0a8;
    vertical-align: middle;
}
[b-1jcv0yg4ok] .audit-table tbody tr:last-child td { border-bottom: 0; }

[b-1jcv0yg4ok] .audit-table .cell-when {
    font-family: ui-monospace, 'JetBrains Mono', Consolas, monospace;
    font-variant-numeric: tabular-nums;
    font-size: 12.5px;
    color: #1a1a1a;
}
[b-1jcv0yg4ok] .audit-table .cell-actor { font-weight: 500; }
[b-1jcv0yg4ok] .audit-table .cell-action { font-weight: 500; }
[b-1jcv0yg4ok] .audit-table .target-type { color: #615b50; }
[b-1jcv0yg4ok] .audit-table .target-id {
    font-family: ui-monospace, 'JetBrains Mono', Consolas, monospace;
    font-weight: 600;
}

[b-1jcv0yg4ok] .audit-table .cell-notes-text {
    display: inline-block;
    max-width: 36ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #615b50;
    vertical-align: bottom;
}

[b-1jcv0yg4ok] .audit-empty-state {
    margin: 24px auto;
    padding: 36px 24px;
    background: #f3ead6;
    border: 1px dashed #cdbf99;
    border-radius: 4px;
    text-align: center;
    max-width: 480px;
}
[b-1jcv0yg4ok] .audit-empty-state .empty-heading {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
[b-1jcv0yg4ok] .audit-empty-state .empty-caption { font-size: 13px; color: #615b50; }
[b-1jcv0yg4ok] .audit-empty-state .btn-clear-empty {
    color: #d4332a;
    font-weight: 600;
    text-decoration: underline;
}

[b-1jcv0yg4ok] .audit-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 6px;
    margin-top: 12px;
    border-top: 1px solid #ddd0a8;
}
[b-1jcv0yg4ok] .audit-pagination .pagination-info {
    font-size: 12px;
    color: #615b50;
    font-variant-numeric: tabular-nums;
}
[b-1jcv0yg4ok] .audit-pagination .pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
[b-1jcv0yg4ok] .audit-pagination .pagination-btn {
    font-size: 12.5px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid #cdbf99;
    border-radius: 3px;
    background: #fffaf0;
}
[b-1jcv0yg4ok] .audit-pagination .pagination-btn:hover { border-color: #1a1a1a; }
[b-1jcv0yg4ok] .audit-pagination .pagination-btn[aria-disabled="true"] {
    opacity: 0.45;
    cursor: not-allowed;
    background: transparent;
}
[b-1jcv0yg4ok] .audit-pagination .pagination-page {
    font-family: ui-monospace, 'JetBrains Mono', Consolas, monospace;
    font-weight: 600;
    color: #1a1a1a;
    padding: 0 4px;
}
[b-1jcv0yg4ok] .audit-pagination .pagination-page[aria-current="page"] {
    color: #d4332a;
    border-bottom: 2px solid #d4332a;
}
[b-1jcv0yg4ok] .audit-pagination .pagination-separator { color: #615b50; font-size: 12px; }

/* Responsive — match OD breakpoints. */
@media (max-width: 960px) {
    [b-1jcv0yg4ok] .audit-filter-band .filter-actions { margin-left: 0; }
}

@media (max-width: 640px) {
    [b-1jcv0yg4ok] .audit-table .col-target,
    [b-1jcv0yg4ok] .audit-table .col-notes { display: none; }
    [b-1jcv0yg4ok] .audit-filter-band { gap: 10px; }
    [b-1jcv0yg4ok] .audit-filter-band .filter-control { min-width: 0; width: 100%; }
}
/* /Components/Pages/Admin/Cruises/AdminCruiseEdit.razor.rz.scp.css */
/* Plan 11-04 — AdminCruiseEdit.razor scoped styles.
   Mirrors AdminSisterClubEdit.razor.css for the shared structure;
   net additions: .field-row, .radio-group/.radio-option, input[type="time"] + select.
*/

/* ── Status row ──────────────────────────────────────────────────────────── */
.edit-status-row[b-7fdzw0q11p] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

/* ── Status chip ─────────────────────────────────────────────────────────── */
.status-chip[b-7fdzw0q11p] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.status-chip.is-published[b-7fdzw0q11p] { background: #dcfce7; color: #166534; }
.status-chip.is-pending[b-7fdzw0q11p]   { background: #fef9c3; color: #854d0e; }
.status-chip.is-rejected[b-7fdzw0q11p]  { background: #fee2e2; color: #991b1b; }

/* ── Form card ───────────────────────────────────────────────────────────── */
.admin-form-card[b-7fdzw0q11p] {
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    padding: 28px 24px;
    max-width: 720px;
    margin-bottom: 20px;
}

.admin-form-section[b-7fdzw0q11p] {
    margin-bottom: 24px;
}

.admin-form-section:last-child[b-7fdzw0q11p] {
    margin-bottom: 0;
}

.admin-form-section-label[b-7fdzw0q11p] {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

/* ── Fields ──────────────────────────────────────────────────────────────── */
.field[b-7fdzw0q11p] {
    margin-bottom: 16px;
}

.field:last-child[b-7fdzw0q11p] {
    margin-bottom: 0;
}

.field label[b-7fdzw0q11p] {
    display: block;
    font-weight: 600;
    font-size: .86rem;
    margin-bottom: 4px;
}

.field label .req[b-7fdzw0q11p] {
    color: #c0392b;
    margin-left: 2px;
}

.field label .opt[b-7fdzw0q11p] {
    font-weight: 400;
    font-size: .78rem;
    color: #999;
    margin-left: 6px;
}

.field input[type="text"][b-7fdzw0q11p],
.field input[type="time"][b-7fdzw0q11p],
.field textarea[b-7fdzw0q11p],
.field select[b-7fdzw0q11p] {
    width: 100%;
    max-width: 580px;
    padding: 9px 12px;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    font-size: .9rem;
    font-family: inherit;
    box-sizing: border-box;
    background: #fff;
}

.field textarea[b-7fdzw0q11p] {
    resize: vertical;
    min-height: 80px;
}

/* ── Field-row — side-by-side fields ─────────────────────────────────────── */
.field-row[b-7fdzw0q11p] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 580px;
    margin-bottom: 16px;
}

.field-row .field[b-7fdzw0q11p] {
    margin-bottom: 0;
}

.field-row .field input[b-7fdzw0q11p],
.field-row .field select[b-7fdzw0q11p] {
    max-width: 100%;
}

@media (max-width: 540px) {
    .field-row[b-7fdzw0q11p] {
        grid-template-columns: 1fr;
    }
}

/* ── Radio group ─────────────────────────────────────────────────────────── */
.radio-group[b-7fdzw0q11p] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-option[b-7fdzw0q11p] {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500 !important;
    font-size: .86rem !important;
}

.radio-option:hover[b-7fdzw0q11p] {
    border-color: #c0392b;
}

.radio-option input[type="radio"][b-7fdzw0q11p] {
    accent-color: #c0392b;
    margin: 0;
}

/* ── Submitter panel ─────────────────────────────────────────────────────── */
.submitter-panel[b-7fdzw0q11p] {
    background: #f8f4ef;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 20px;
    max-width: 580px;
}

.submitter-panel-heading[b-7fdzw0q11p] {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 10px;
}

.submitter-field[b-7fdzw0q11p] {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    font-size: .86rem;
}

.submitter-field .sf-label[b-7fdzw0q11p] {
    color: #888;
    min-width: 90px;
}

.submitter-field .sf-value[b-7fdzw0q11p] {
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Error list ──────────────────────────────────────────────────────────── */
.admin-form-errors[b-7fdzw0q11p] {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 12px 16px 12px 32px;
    color: #991b1b;
    font-size: .88rem;
    margin-bottom: 16px;
    max-width: 580px;
}

/* ── Form actions ────────────────────────────────────────────────────────── */
.admin-form-actions[b-7fdzw0q11p] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.btn-save[b-7fdzw0q11p] {
    background: #c0392b;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.btn-save:hover[b-7fdzw0q11p] {
    opacity: .88;
}

.btn-cancel[b-7fdzw0q11p] {
    color: #c0392b;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
}

.admin-form-actions-spacer[b-7fdzw0q11p] {
    flex: 1;
}

.admin-form-actions-helper[b-7fdzw0q11p] {
    font-size: .78rem;
    color: #999;
}
/* /Components/Pages/Admin/Cruises/AdminCruiseNew.razor.rz.scp.css */
/*
    Plan 11-03 — /admin/cruises/new page styles.
    Source: features/v01/11-weekly-cruises/artifacts/11-03-admin-cruise-new.html
    Inherits topbar / sidebar / admin-page-* tokens from the admin-shell.css.
    Mirrors AdminSisterClubNew.razor.css (F09 Plan 09-03) — same admin-form-card
    + admin-form-section + button styles. Net additions over F09:
      - .field-row — side-by-side fields for time/season-month pairs
      - select   — matched to text-input chrome (admin theme)
      - .radio-group — recurrence radio choice
    No upload-zone block — F11 weekly cruises have no flyer / no file upload.
*/

/* Errors banner */
.admin-form-errors[b-fsewbsmmcx] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-fsewbsmmcx] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-fsewbsmmcx]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-fsewbsmmcx] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-fsewbsmmcx] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-fsewbsmmcx] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-fsewbsmmcx] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-fsewbsmmcx] {
    margin-bottom: 20px;
}

.field:last-child[b-fsewbsmmcx] {
    margin-bottom: 0;
}

.field label[b-fsewbsmmcx] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-fsewbsmmcx] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-fsewbsmmcx] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-fsewbsmmcx],
.field input[type="time"][b-fsewbsmmcx],
.field textarea[b-fsewbsmmcx],
.field select[b-fsewbsmmcx] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-fsewbsmmcx],
.field input[type="time"]:focus[b-fsewbsmmcx],
.field textarea:focus[b-fsewbsmmcx],
.field select:focus[b-fsewbsmmcx] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-fsewbsmmcx] {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.field-hint[b-fsewbsmmcx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Field-row — side-by-side fields */
.field-row[b-fsewbsmmcx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.field-row .field[b-fsewbsmmcx] {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .field-row[b-fsewbsmmcx] {
        grid-template-columns: 1fr;
    }
}

/* Radio group — recurrence */
.radio-group[b-fsewbsmmcx] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-option[b-fsewbsmmcx] {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 0 !important;
    padding: 8px 12px;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    cursor: pointer;
    color: #f4ead5;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    transition: border-color 0.12s;
}

.radio-option:hover[b-fsewbsmmcx] {
    border-color: #f4ead5;
}

.radio-option input[type="radio"][b-fsewbsmmcx] {
    accent-color: #c8281f;
    margin: 0;
}

/* Actions */
.admin-form-actions[b-fsewbsmmcx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-publish[b-fsewbsmmcx] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-publish:hover[b-fsewbsmmcx] {
    filter: brightness(1.08);
}

.btn-publish:active[b-fsewbsmmcx] {
    transform: translateY(1px);
}

.btn-publish:focus-visible[b-fsewbsmmcx] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-fsewbsmmcx] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-fsewbsmmcx] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-fsewbsmmcx] {
    flex: 1;
}

.admin-form-actions-helper[b-fsewbsmmcx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}
/* /Components/Pages/Admin/Cruises/AdminCruises.razor.rz.scp.css */
/* Plan 11-04 — AdminCruises.razor scoped styles.
   Mirrors AdminSisterClubs.razor.css; net additions:
     - .recurrence-badge — weekly / monthly pill
     - .admin-cruises-row--day-break — subtle thicker top border between day groups
     - .cruise-day formatting (mono-ish small-caps treatment)
*/

/* ── Page header ─────────────────────────────────────────────────────────── */
.admin-cruises-header[b-0b890zra9o] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 16px;
}

.admin-cruises-header-text[b-0b890zra9o] {
    flex: 1;
}

.btn-new-cruise[b-0b890zra9o] {
    background: #c0392b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    transition: opacity .15s;
}

.btn-new-cruise:hover[b-0b890zra9o] {
    opacity: .88;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.admin-cruises-empty[b-0b890zra9o] {
    background: #fff;
    border: 1px dashed #d8d0c4;
    border-radius: 6px;
    padding: 48px 24px;
    text-align: center;
}

.empty-heading[b-0b890zra9o] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.empty-caption[b-0b890zra9o] {
    color: #888;
    margin: 0;
    font-size: .9rem;
}

/* ── Table ───────────────────────────────────────────────────────────────── */
.admin-cruises-table-wrap[b-0b890zra9o] {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

.admin-cruises-table[b-0b890zra9o] {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

.admin-cruises-table thead tr[b-0b890zra9o] {
    background: #1a1a1a;
    color: #c0c0c0;
    text-align: left;
}

.admin-cruises-table thead th[b-0b890zra9o] {
    padding: 12px 14px;
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-cruises-table .admin-cruises-row[b-0b890zra9o] {
    border-top: 1px solid #e5e0d4;
    transition: background .1s;
}

.admin-cruises-table .admin-cruises-row--day-break[b-0b890zra9o] {
    border-top: 2px solid #c0c0c0;
}

.admin-cruises-table .admin-cruises-row:hover[b-0b890zra9o] {
    background: #fafaf8;
}

.admin-cruises-table td[b-0b890zra9o] {
    padding: 12px 14px;
    vertical-align: middle;
}

/* ── Column widths ───────────────────────────────────────────────────────── */
.col-day[b-0b890zra9o]         { width: 110px; }
.col-venue[b-0b890zra9o]       { min-width: 180px; }
.col-location[b-0b890zra9o]    { min-width: 140px; }
.col-time[b-0b890zra9o]        { width: 150px; white-space: nowrap; }
.col-description[b-0b890zra9o] { min-width: 180px; }
.col-season[b-0b890zra9o]      { width: 100px; white-space: nowrap; }
.col-recurrence[b-0b890zra9o]  { width: 130px; white-space: nowrap; }
.col-status[b-0b890zra9o]      { width: 110px; white-space: nowrap; }
.col-actions[b-0b890zra9o]     { width: 240px; }

/* ── Day cell + venue ────────────────────────────────────────────────────── */
.cruise-day[b-0b890zra9o] {
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .04em;
}

.cruise-venue[b-0b890zra9o] {
    font-weight: 600;
}

/* ── Status badges ───────────────────────────────────────────────────────── */
.status-badge[b-0b890zra9o] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
}

.status-badge--published[b-0b890zra9o] { background: #dcfce7; color: #166534; }
.status-badge--pending[b-0b890zra9o]   { background: #fef9c3; color: #854d0e; }
.status-badge--rejected[b-0b890zra9o]  { background: #fee2e2; color: #991b1b; }

/* ── Recurrence badges ───────────────────────────────────────────────────── */
.recurrence-badge[b-0b890zra9o] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
}

.recurrence-badge--weekly[b-0b890zra9o]  { background: #e0e7ff; color: #3730a3; }
.recurrence-badge--monthly[b-0b890zra9o] { background: #fef3c7; color: #92400e; }

/* ── Row action buttons ──────────────────────────────────────────────────── */
.row-actions[b-0b890zra9o] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-action[b-0b890zra9o] {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: .76rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: opacity .15s;
    background: none;
    font-family: inherit;
}

.btn-action--edit[b-0b890zra9o]      { background: #c0c0c0; color: #1a1a1a; }
.btn-action--unpublish[b-0b890zra9o] { background: #fef3c7; color: #92400e; }
.btn-action--republish[b-0b890zra9o] { background: #d1fae5; color: #065f46; }
.btn-action--delete[b-0b890zra9o]    { background: #fee2e2; color: #991b1b; }
.btn-action:hover[b-0b890zra9o]      { opacity: .8; }
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
.admin-page-eyebrow[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--admin-text-dim);
    margin: 0 0 6px;
}

.admin-page-title[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--admin-text);
    line-height: 1;
    margin: 0 0 28px;
}

/* ─── Stat grid ──────────────────────────────────────────────────── */
.admin-stat-grid[b-v9rxakxjo2] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.admin-stat-card[b-v9rxakxjo2] {
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 3px;
    padding: 22px 24px 20px;
    position: relative;
    overflow: hidden;
}

/* Chrome strip across the top of every stat card */
.admin-stat-card[b-v9rxakxjo2]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--admin-chrome-lo) 0%,
        var(--admin-chrome-hi) 50%,
        var(--admin-chrome-lo) 100%
    );
}

.admin-stat-card-label[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--admin-text-muted);
    margin-bottom: 12px;
}

.admin-stat-card-value[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 800;
    font-size: 52px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--admin-text);
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.admin-stat-card-note[b-v9rxakxjo2] {
    font-family: var(--admin-font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--admin-text-dim);
    font-style: italic;
}

/* ─── Welcome block ──────────────────────────────────────────────── */
.admin-welcome[b-v9rxakxjo2] {
    background: var(--admin-surface);
    border: 1px solid var(--admin-border);
    border-radius: 3px;
    padding: 18px 24px;
    position: relative;
    overflow: hidden;
}

.admin-welcome[b-v9rxakxjo2]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--admin-chrome-hi) 0%, var(--admin-chrome-lo) 100%);
}

.admin-welcome-heading[b-v9rxakxjo2] {
    font-family: var(--admin-font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--admin-text);
    margin: 0 0 5px;
    padding-left: 14px;
}

.admin-welcome-body[b-v9rxakxjo2] {
    font-size: 12px;
    font-weight: 400;
    color: var(--admin-text-muted);
    line-height: 1.65;
    padding-left: 14px;
    margin: 0;
}
/* /Components/Pages/Admin/Events/Edit.razor.rz.scp.css */
/*
    Plan 07-03 — /admin/events/{id}/edit page styles.
    Source: features/v01/07-events/artifacts/07-03-admin-events-edit.html

    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Form-card / field / upload-zone tokens mirror New.razor.css from 07-02
    (this is the documented token-reuse pattern surfaced by TD-023).
*/

/* Status chip next to the title */
.edit-status-row[b-yeurscc24a] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.status-chip[b-yeurscc24a] {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    border: 1px solid;
}

.status-chip.is-published[b-yeurscc24a] {
    color: #f4ead5;
    background: rgba(200, 40, 31, 0.18);
    border-color: #c8281f;
}

.status-chip.is-pending[b-yeurscc24a] {
    color: #c9ccd1;
    background: rgba(201, 204, 209, 0.08);
    border-color: rgba(201, 204, 209, 0.36);
}

/* Errors banner */
.admin-form-errors[b-yeurscc24a] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-yeurscc24a] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-yeurscc24a]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-yeurscc24a] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-yeurscc24a] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-yeurscc24a] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-yeurscc24a] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-yeurscc24a] {
    margin-bottom: 20px;
}

.field:last-child[b-yeurscc24a] {
    margin-bottom: 0;
}

.field label[b-yeurscc24a] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-yeurscc24a] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-yeurscc24a] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-yeurscc24a],
.field input[type="date"][b-yeurscc24a],
.field textarea[b-yeurscc24a] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-yeurscc24a],
.field input[type="date"]:focus[b-yeurscc24a],
.field textarea:focus[b-yeurscc24a] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-yeurscc24a] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-yeurscc24a] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Current flyer + replace zone */
.current-flyer-row[b-yeurscc24a] {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.12);
    border-radius: 4px;
    margin-bottom: 16px;
}

.current-flyer-thumb[b-yeurscc24a] {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(201, 204, 209, 0.18);
    background: #131313;
    flex-shrink: 0;
}

.current-flyer-info[b-yeurscc24a] {
    flex: 1;
    min-width: 0;
}

.current-flyer-label[b-yeurscc24a] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 4px;
}

.current-flyer-name[b-yeurscc24a] {
    color: #f4ead5;
    font-size: 13px;
    word-break: break-all;
}

/* Upload zone (Replace flyer) */
.upload-zone[b-yeurscc24a] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 24px 20px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-yeurscc24a] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-yeurscc24a] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-yeurscc24a] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.upload-cta span[b-yeurscc24a] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-yeurscc24a] {
    font-size: 11px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

/* Two-column row for date + location */
.field-row[b-yeurscc24a] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

@media (max-width: 720px) {
    .field-row[b-yeurscc24a] {
        grid-template-columns: 1fr;
    }
}

/* Actions */
.admin-form-actions[b-yeurscc24a] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-save[b-yeurscc24a] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-save:hover[b-yeurscc24a] {
    filter: brightness(1.08);
}

.btn-save:active[b-yeurscc24a] {
    transform: translateY(1px);
}

.btn-save:focus-visible[b-yeurscc24a] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-yeurscc24a] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-yeurscc24a] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-yeurscc24a] {
    flex: 1;
}

.admin-form-actions-helper[b-yeurscc24a] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-yeurscc24a] {
    border-color: var(--admin-accent-red, #c0392b);
    background: var(--admin-surface-raised, #ffffff);
}
.upload-zone.is-selected[b-yeurscc24a] {
    border-style: solid;
    border-color: var(--admin-state-ok-border, #2e7d32);
}
.upload-zone.is-selected .upload-cta[b-yeurscc24a] {
    color: var(--admin-state-ok-fg, #1b5e20);
}
/* /Components/Pages/Admin/Events/Index.razor.rz.scp.css */
/*
    Plan 07-03 — /admin/events CRUD list page styles.
    Source: features/v01/07-events/artifacts/07-03-admin-events-index.html

    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    This file owns the events-table card + status badges + per-row action buttons.
*/

/* Header strip with New-event CTA */
.admin-events-header[b-15zl8jzjex] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    max-width: 1200px;
    gap: 16px;
}

.admin-events-header-text[b-15zl8jzjex] {
    flex: 1;
}

.btn-new-event[b-15zl8jzjex] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 10px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter 0.12s, transform 0.04s;
    white-space: nowrap;
}

.btn-new-event:hover[b-15zl8jzjex] {
    filter: brightness(1.08);
}

.btn-new-event:focus-visible[b-15zl8jzjex] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

/* Events table card */
.admin-events-card[b-15zl8jzjex] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    max-width: 1200px;
    overflow-x: auto;
}

.admin-events-table[b-15zl8jzjex] {
    width: 100%;
    border-collapse: collapse;
}

.admin-events-table thead tr[b-15zl8jzjex] {
    background: rgba(244, 234, 213, 0.04);
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-events-table th[b-15zl8jzjex] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    text-align: left;
    padding: 14px 16px;
}

.admin-events-table td[b-15zl8jzjex] {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
    vertical-align: middle;
}

.admin-events-table tr:last-child td[b-15zl8jzjex] {
    border-bottom: none;
}

/* Columns */
.col-thumb[b-15zl8jzjex] {
    width: 76px;
}

.flyer-thumb[b-15zl8jzjex] {
    width: 60px;
    height: 60px;
    border-radius: 3px;
    object-fit: cover;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.18);
    display: block;
}

.col-title[b-15zl8jzjex] {
    min-width: 240px;
}

.title-text[b-15zl8jzjex] {
    color: #f4ead5;
    font-weight: 600;
    font-size: 14px;
}

.title-alt[b-15zl8jzjex] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 11px;
    margin-top: 2px;
    font-style: italic;
}

.col-date[b-15zl8jzjex] {
    width: 140px;
    color: rgba(201, 204, 209, 0.58);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.col-location[b-15zl8jzjex] {
    width: 200px;
    color: rgba(201, 204, 209, 0.58);
    font-size: 13px;
}

.col-date.is-null[b-15zl8jzjex],
.col-location.is-null[b-15zl8jzjex] {
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}

/* Status badges */
.col-status[b-15zl8jzjex] {
    width: 130px;
}

.status-badge[b-15zl8jzjex] {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid;
}

.status-published[b-15zl8jzjex] {
    color: #f4ead5;
    background: rgba(200, 40, 31, 0.18);
    border-color: #c8281f;
}

.status-pending[b-15zl8jzjex] {
    color: #c9ccd1;
    background: rgba(201, 204, 209, 0.08);
    border-color: rgba(201, 204, 209, 0.36);
}

.status-rejected[b-15zl8jzjex] {
    color: rgba(201, 204, 209, 0.36);
    background: rgba(20, 20, 22, 0.6);
    border-color: rgba(201, 204, 209, 0.18);
}

/* Actions column */
.col-actions[b-15zl8jzjex] {
    width: 280px;
    text-align: right;
}

.actions-group[b-15zl8jzjex] {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.actions-group form[b-15zl8jzjex] {
    display: inline-block;
    margin: 0;
}

.btn-action[b-15zl8jzjex] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    color: #c9ccd1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.12s, color 0.12s, background 0.12s;
}

.btn-action:hover[b-15zl8jzjex] {
    border-color: #f4ead5;
    color: #f4ead5;
}

.btn-action:focus-visible[b-15zl8jzjex] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-edit[b-15zl8jzjex] {
    color: #f4ead5;
    border-color: rgba(244, 234, 213, 0.32);
}

.btn-unpublish[b-15zl8jzjex] {
    color: #d97706;
    border-color: rgba(217, 119, 6, 0.42);
}

.btn-unpublish:hover[b-15zl8jzjex] {
    border-color: #d97706;
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.btn-republish[b-15zl8jzjex] {
    color: #c8281f;
    border-color: rgba(200, 40, 31, 0.42);
}

.btn-republish:hover[b-15zl8jzjex] {
    border-color: #c8281f;
    color: #fff;
    background: rgba(200, 40, 31, 0.18);
}

.btn-delete[b-15zl8jzjex] {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.32);
}

.btn-delete:hover[b-15zl8jzjex] {
    border-color: #ef4444;
    color: #fff;
    background: rgba(239, 68, 68, 0.18);
}

/* Empty state */
.admin-events-empty[b-15zl8jzjex] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 56px 32px;
    text-align: center;
    max-width: 1200px;
}

.empty-heading[b-15zl8jzjex] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f4ead5;
    margin-bottom: 12px;
}

.empty-caption[b-15zl8jzjex] {
    color: rgba(201, 204, 209, 0.58);
    font-size: 13px;
    margin-bottom: 20px;
}

.empty-caption a[b-15zl8jzjex] {
    color: #c8281f;
    text-decoration: underline;
}
/* /Components/Pages/Admin/Events/New.razor.rz.scp.css */
/*
    Plan 07-02 — /admin/events/new page styles.
    Source: features/v01/07-events/artifacts/07-02-admin-events-new.html
    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    This file only owns the form-card + upload-zone + actions.
*/

/* Errors banner */
.admin-form-errors[b-nqe02786z8] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-nqe02786z8] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-nqe02786z8]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-nqe02786z8] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-nqe02786z8] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-nqe02786z8] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* V02 F01 plan 01-06 — Duplicate-from picker section. Subtle distinct
   treatment from the rest of the form: dashed accent border on the left,
   slightly indented padding. Communicates "this is a shortcut, not a
   required field." */
.admin-form-section--duplicate[b-nqe02786z8] {
    border-left: 3px dashed rgba(200, 16, 46, 0.45);
    padding-left: 14px;
    margin-left: -17px;
}
.admin-form-section--duplicate .field-hint[b-nqe02786z8] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.55);
    margin-top: 6px;
    line-height: 1.4;
}

.admin-form-section-label[b-nqe02786z8] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-nqe02786z8] {
    margin-bottom: 20px;
}

.field:last-child[b-nqe02786z8] {
    margin-bottom: 0;
}

.field label[b-nqe02786z8] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-nqe02786z8] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-nqe02786z8] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-nqe02786z8],
.field input[type="date"][b-nqe02786z8],
.field textarea[b-nqe02786z8] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-nqe02786z8],
.field input[type="date"]:focus[b-nqe02786z8],
.field textarea:focus[b-nqe02786z8] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-nqe02786z8] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-nqe02786z8] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Upload zone */
.upload-zone[b-nqe02786z8] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 28px 24px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-nqe02786z8] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-nqe02786z8] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-nqe02786z8] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.upload-cta span[b-nqe02786z8] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-nqe02786z8] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

.upload-hint strong[b-nqe02786z8] {
    color: rgba(244, 234, 213, 0.58);
}

/* Two-column row for date + location */
.field-row[b-nqe02786z8] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

@media (max-width: 720px) {
    .field-row[b-nqe02786z8] {
        grid-template-columns: 1fr;
    }
}

/* Actions */
.admin-form-actions[b-nqe02786z8] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-publish[b-nqe02786z8] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-publish:hover[b-nqe02786z8] {
    filter: brightness(1.08);
}

.btn-publish:active[b-nqe02786z8] {
    transform: translateY(1px);
}

.btn-publish:focus-visible[b-nqe02786z8] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-nqe02786z8] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-nqe02786z8] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-nqe02786z8] {
    flex: 1;
}

.admin-form-actions-helper[b-nqe02786z8] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-nqe02786z8] {
    border-color: var(--admin-accent-red, #c0392b);
    background: var(--admin-surface-raised, #ffffff);
}
.upload-zone.is-selected[b-nqe02786z8] {
    border-style: solid;
    border-color: var(--admin-state-ok-border, #2e7d32);
}
.upload-zone.is-selected .upload-cta[b-nqe02786z8] {
    color: var(--admin-state-ok-fg, #1b5e20);
}
/* /Components/Pages/Admin/Moderation/Index.razor.rz.scp.css */
/* Plan 06-03 — Moderation queue page styles.
   Source artifact: features/v01/06-moderation-queue/artifacts/06-03-admin-moderation.html

   Tokens (--chrome, --cream, --red, etc.) and the .admin-page-* heading
   classes come from AdminLayout.razor.css (Plan 04-05). This file adds
   only the moderation-row + action-button styles. CSS isolation scopes
   these to the Moderation/Index.razor component. */

.admin-moderation-list[b-z3ffuor1ks] {
    list-style: none;
    margin: 0 0 56px;
    padding: 0;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.admin-moderation-row[b-z3ffuor1ks] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
    background: rgba(255, 255, 255, 0.012);
    transition: background 0.12s;
}

.admin-moderation-row:last-child[b-z3ffuor1ks] { border-bottom: none; }
.admin-moderation-row:hover[b-z3ffuor1ks]      { background: rgba(201, 204, 209, 0.04); }

.admin-moderation-type-badge[b-z3ffuor1ks] {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--chrome, #c9ccd1);
    background: rgba(201, 204, 209, 0.1);
    border: 1px solid rgba(201, 204, 209, 0.2);
    padding: 3px 9px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 5px;
}

.admin-moderation-content[b-z3ffuor1ks] {
    flex: 1;
    min-width: 0;
}

.admin-moderation-label[b-z3ffuor1ks] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.03em;
    color: var(--cream, #f4ead5);
    line-height: 1.15;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-moderation-submitter[b-z3ffuor1ks] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.58);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.submitter-sep[b-z3ffuor1ks] {
    margin: 0 5px;
    color: rgba(201, 204, 209, 0.36);
}

.admin-moderation-when[b-z3ffuor1ks] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 88px;
    text-align: right;
}

.admin-moderation-actions[b-z3ffuor1ks] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.admin-moderation-actions form[b-z3ffuor1ks] { display: contents; }

/* Plan 06-04 — Reject form needs a textarea + button column. Switch the
   reject form back to its own flex column instead of `display: contents`
   so the textarea can sit above the button without collapsing. */
.admin-moderation-actions form:has(.admin-moderation-reject-reason)[b-z3ffuor1ks] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-moderation-reject-reason[b-z3ffuor1ks] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    color: var(--cream, #f4ead5);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(217, 119, 6, 0.32);
    border-radius: 3px;
    padding: 6px 8px;
    width: 200px;
    resize: vertical;
    min-height: 38px;
}

.admin-moderation-reject-reason:focus-visible[b-z3ffuor1ks] {
    outline: 2px solid #d97706;
    outline-offset: 1px;
    border-color: #d97706;
}

.visually-hidden[b-z3ffuor1ks] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.admin-moderation-approve[b-z3ffuor1ks],
.admin-moderation-reject[b-z3ffuor1ks],
.admin-moderation-delete[b-z3ffuor1ks] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 7px 15px;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    transition: filter 0.14s;
}

.admin-moderation-approve:focus-visible[b-z3ffuor1ks],
.admin-moderation-reject:focus-visible[b-z3ffuor1ks],
.admin-moderation-delete:focus-visible[b-z3ffuor1ks] {
    outline: 2px solid var(--cream, #f4ead5);
    outline-offset: 2px;
}

/* Approve — chrome default, primary action */
.admin-moderation-approve[b-z3ffuor1ks] {
    background: linear-gradient(180deg, #d8dce2 0%, #b8bcc4 100%);
    color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.admin-moderation-approve:hover[b-z3ffuor1ks] { filter: brightness(1.09); }

/* Reject — amber outline, caution */
.admin-moderation-reject[b-z3ffuor1ks] {
    background: transparent;
    color: #e28f10;
    border: 1px solid rgba(217, 119, 6, 0.58);
}
.admin-moderation-reject:hover[b-z3ffuor1ks] {
    background: rgba(217, 119, 6, 0.1);
    border-color: #d97706;
}

/* Delete — hot-rod red, destructive (RESERVED for destructive only) */
.admin-moderation-delete[b-z3ffuor1ks] {
    background: #c8281f;
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.admin-moderation-delete:hover[b-z3ffuor1ks] { filter: brightness(1.1); }

/* Empty state */
.admin-moderation-empty[b-z3ffuor1ks] {
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 68px 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
}

.empty-icon-ring[b-z3ffuor1ks] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 204, 209, 0.055);
    border: 1px solid rgba(201, 204, 209, 0.12);
    margin: 0 auto 22px;
    color: rgba(201, 204, 209, 0.58);
}

.admin-moderation-empty-heading[b-z3ffuor1ks] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--chrome, #c9ccd1);
    margin: 0 0 10px;
}

.admin-moderation-empty-caption[b-z3ffuor1ks] {
    font-size: 13px;
    color: rgba(201, 204, 209, 0.36);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.7;
}
/* /Components/Pages/Admin/Photos/AdminPhotoEdit.razor.rz.scp.css */
/*
    Plan 08-04 — /admin/photos/{id}/edit page styles.
    Source: features/v01/08-photos/artifacts/08-04-admin-photo-edit.html

    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Form-card / field / upload-zone tokens mirror F07 Edit.razor.css
    (the documented token-reuse pattern surfaced by TD-023).
*/

/* Status chip row next to the title */
.edit-status-row[b-9prqcy9biu] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.status-chip[b-9prqcy9biu] {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    border: 1px solid;
}

.status-chip.is-published[b-9prqcy9biu] {
    color: #f4ead5;
    background: rgba(61, 139, 92, 0.18);
    border-color: rgba(61, 139, 92, 0.5);
}

.status-chip.is-pending[b-9prqcy9biu] {
    color: #c9ccd1;
    background: rgba(201, 204, 209, 0.08);
    border-color: rgba(201, 204, 209, 0.36);
}

.status-chip.is-rejected[b-9prqcy9biu] {
    color: #e25247;
    background: rgba(212, 51, 42, 0.16);
    border-color: rgba(212, 51, 42, 0.4);
}

.status-chip.is-featured[b-9prqcy9biu] {
    color: #ffb830;
    background: rgba(255, 184, 48, 0.1);
    border-color: rgba(255, 184, 48, 0.4);
}

/* Errors banner */
.admin-form-errors[b-9prqcy9biu] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-9prqcy9biu] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-9prqcy9biu]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-9prqcy9biu] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-9prqcy9biu] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-9prqcy9biu] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-9prqcy9biu] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-9prqcy9biu] {
    margin-bottom: 20px;
}

.field:last-child[b-9prqcy9biu] {
    margin-bottom: 0;
}

.field label[b-9prqcy9biu] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-9prqcy9biu] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-9prqcy9biu] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-9prqcy9biu],
.field textarea[b-9prqcy9biu] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-9prqcy9biu],
.field textarea:focus[b-9prqcy9biu] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-9prqcy9biu] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-9prqcy9biu] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Current photo + replace zone */
.current-photo-row[b-9prqcy9biu] {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.12);
    border-radius: 4px;
    margin-bottom: 16px;
}

.current-photo-thumb[b-9prqcy9biu] {
    width: 200px;
    height: 134px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid rgba(201, 204, 209, 0.18);
    background: #131313;
    flex-shrink: 0;
}

.current-photo-info[b-9prqcy9biu] {
    flex: 1;
    min-width: 0;
}

.current-photo-label[b-9prqcy9biu] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 4px;
}

.current-photo-name[b-9prqcy9biu] {
    color: #f4ead5;
    font-size: 13px;
    word-break: break-all;
}

/* Upload zone (Replace image) */
.upload-zone[b-9prqcy9biu] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 24px 20px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-9prqcy9biu] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-9prqcy9biu] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-9prqcy9biu] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.upload-cta span[b-9prqcy9biu] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-9prqcy9biu] {
    font-size: 11px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

/* Actions */
.admin-form-actions[b-9prqcy9biu] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-save[b-9prqcy9biu] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-save:hover[b-9prqcy9biu] {
    filter: brightness(1.08);
}

.btn-save:active[b-9prqcy9biu] {
    transform: translateY(1px);
}

.btn-save:focus-visible[b-9prqcy9biu] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-9prqcy9biu] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-9prqcy9biu] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-9prqcy9biu] {
    flex: 1;
}

.admin-form-actions-helper[b-9prqcy9biu] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-9prqcy9biu] {
    border-color: var(--admin-accent-red, #c0392b);
    background: var(--admin-surface-raised, #ffffff);
}
.upload-zone.is-selected[b-9prqcy9biu] {
    border-style: solid;
    border-color: var(--admin-state-ok-border, #2e7d32);
}
.upload-zone.is-selected .upload-cta[b-9prqcy9biu] {
    color: var(--admin-state-ok-fg, #1b5e20);
}
/* /Components/Pages/Admin/Photos/AdminPhotoNew.razor.rz.scp.css */
/*
    Plan 08-03 — /admin/photos/new page styles.
    Source: features/v01/08-photos/artifacts/08-03-admin-photo-new.html
    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Visual contract matches F07 /admin/events/new (Plan 07-02) — same
    design-system tokens, same admin-form-card + upload-zone + actions.
*/

/* Errors banner */
.admin-form-errors[b-ezpicsrfta] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-ezpicsrfta] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-ezpicsrfta]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-ezpicsrfta] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-ezpicsrfta] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-ezpicsrfta] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-ezpicsrfta] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-ezpicsrfta] {
    margin-bottom: 20px;
}

.field:last-child[b-ezpicsrfta] {
    margin-bottom: 0;
}

.field label[b-ezpicsrfta] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-ezpicsrfta] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-ezpicsrfta] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-ezpicsrfta],
.field textarea[b-ezpicsrfta] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-ezpicsrfta],
.field textarea:focus[b-ezpicsrfta] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-ezpicsrfta] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-ezpicsrfta] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Upload zone */
.upload-zone[b-ezpicsrfta] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 28px 24px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-ezpicsrfta] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-ezpicsrfta] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-ezpicsrfta] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.upload-cta span[b-ezpicsrfta] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-ezpicsrfta] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

/* Actions */
.admin-form-actions[b-ezpicsrfta] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-publish[b-ezpicsrfta] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-publish:hover[b-ezpicsrfta] {
    filter: brightness(1.08);
}

.btn-publish:active[b-ezpicsrfta] {
    transform: translateY(1px);
}

.btn-publish:focus-visible[b-ezpicsrfta] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-ezpicsrfta] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-ezpicsrfta] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-ezpicsrfta] {
    flex: 1;
}

.admin-form-actions-helper[b-ezpicsrfta] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-ezpicsrfta] {
    border-color: var(--admin-accent-red, #c0392b);
    background: var(--admin-surface-raised, #ffffff);
}
.upload-zone.is-selected[b-ezpicsrfta] {
    border-style: solid;
    border-color: var(--admin-state-ok-border, #2e7d32);
}
.upload-zone.is-selected .upload-cta[b-ezpicsrfta] {
    color: var(--admin-state-ok-fg, #1b5e20);
}
/* /Components/Pages/Admin/Photos/AdminPhotos.razor.rz.scp.css */
/*
    Plan 08-04 — /admin/photos CRUD list page styles.
    Source: features/v01/08-photos/artifacts/08-04-admin-photos-list.html

    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Visual contract parallels F07 /admin/events Index.razor.css — same
    .admin-events-card / .admin-events-table conceptual layout, renamed
    to .admin-photos-* for namespace clarity. Adds:
      - .col-drag + .drag-handle (vertical-dots reorder handle)
      - .col-featured + .featured-star (star toggle, gold-filled when on)
      - .photo-thumb (3:2 200w image, vs F07's flyer 60x60 square)
*/

/* Header strip with Add-photo CTA */
.admin-photos-header[b-9pjji261ru] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    max-width: 1200px;
    gap: 16px;
}

.admin-photos-header-text[b-9pjji261ru] {
    flex: 1;
}

.btn-new-photo[b-9pjji261ru] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 10px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: filter 0.12s, transform 0.04s;
    white-space: nowrap;
}

.btn-new-photo:hover[b-9pjji261ru] {
    filter: brightness(1.08);
}

.btn-new-photo:focus-visible[b-9pjji261ru] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

/* Photos table card */
.admin-photos-table-wrap[b-9pjji261ru] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    max-width: 1200px;
    overflow-x: auto;
    margin-bottom: 8px;
}

.admin-photos-table[b-9pjji261ru] {
    width: 100%;
    border-collapse: collapse;
}

.admin-photos-table thead tr[b-9pjji261ru] {
    background: rgba(244, 234, 213, 0.04);
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-photos-table th[b-9pjji261ru] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    text-align: left;
    padding: 12px 14px;
    white-space: nowrap;
}

.admin-photos-table th.col-actions[b-9pjji261ru] { text-align: right; }
.admin-photos-table th.col-center[b-9pjji261ru]  { text-align: center; }

.admin-photos-table td[b-9pjji261ru] {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
    vertical-align: middle;
}

.admin-photos-table tr:last-child td[b-9pjji261ru] {
    border-bottom: none;
}

/* Row state — draggable cursor + drop-target glow set by photo-reorder.js */
.admin-photos-card[b-9pjji261ru] {
    background: transparent;
    transition: background 0.12s;
}

.admin-photos-card:hover[b-9pjji261ru] {
    background: rgba(201, 204, 209, 0.04);
}

.admin-photos-card.is-dragging[b-9pjji261ru] {
    opacity: 0.55;
    background: rgba(201, 204, 209, 0.07);
}

.admin-photos-card.is-drop-target[b-9pjji261ru] {
    box-shadow: inset 0 -2px 0 #c8281f;
}

.col-drag[b-9pjji261ru]      { width: 36px; }
.col-thumb[b-9pjji261ru]     { width: 220px; }
.col-caption[b-9pjji261ru]   { min-width: 180px; }
.col-alt[b-9pjji261ru]       { min-width: 180px; }
.col-status[b-9pjji261ru]    { width: 108px; }
.col-featured[b-9pjji261ru]  { width: 76px; }
.col-actions[b-9pjji261ru]   { width: 250px; }

.col-actions[b-9pjji261ru]   { text-align: right; }
.col-center[b-9pjji261ru]    { text-align: center; }

/* Drag handle */
.drag-handle[b-9pjji261ru] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 32px;
    color: rgba(201, 204, 209, 0.36);
    cursor: grab;
    border-radius: 3px;
    transition: color 0.12s, background 0.12s;
    margin: 0 auto;
    background: transparent;
    border: none;
}

.drag-handle:hover[b-9pjji261ru] {
    color: #f4ead5;
    background: rgba(201, 204, 209, 0.06);
}

.drag-handle:focus-visible[b-9pjji261ru] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

/* Thumb */
.photo-thumb[b-9pjji261ru] {
    width: 200px;
    height: 134px;
    object-fit: cover;
    background: #1a1a1d;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    display: block;
}

/* Caption + alt snippets — 2-line clamp */
.photo-caption[b-9pjji261ru],
.photo-alt[b-9pjji261ru] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
}

.photo-caption[b-9pjji261ru] {
    color: #f4ead5;
    font-weight: 500;
}

.photo-alt[b-9pjji261ru] {
    color: rgba(201, 204, 209, 0.58);
    font-style: italic;
}

/* Status badges — match F07 .status-badge contract but with dot prefix */
.status-badge[b-9pjji261ru] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid;
    white-space: nowrap;
}

.status-badge[b-9pjji261ru]::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.status-badge--published[b-9pjji261ru] {
    color: #5fb37c;
    background: rgba(61, 139, 92, 0.16);
    border-color: rgba(61, 139, 92, 0.36);
}

.status-badge--pending[b-9pjji261ru] {
    color: #e28f10;
    background: rgba(217, 119, 6, 0.16);
    border-color: rgba(217, 119, 6, 0.32);
}

.status-badge--rejected[b-9pjji261ru] {
    color: #e25247;
    background: rgba(212, 51, 42, 0.16);
    border-color: rgba(212, 51, 42, 0.4);
}

/* Featured star toggle */
.featured-star[b-9pjji261ru] {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: transform 0.12s, background 0.12s;
}

.featured-star svg[b-9pjji261ru] {
    width: 20px;
    height: 20px;
}

.featured-star:hover[b-9pjji261ru] {
    background: rgba(201, 204, 209, 0.07);
    transform: scale(1.08);
}

.featured-star:focus-visible[b-9pjji261ru] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.featured-star--off svg path[b-9pjji261ru] {
    fill: none;
    stroke: rgba(201, 204, 209, 0.36);
    stroke-width: 1.4;
}

.featured-star--off:hover svg path[b-9pjji261ru] {
    stroke: #ffb830;
}

.featured-star--on svg path[b-9pjji261ru] {
    fill: #ffb830;
    stroke: #ffb830;
    stroke-width: 1.2;
    filter: drop-shadow(0 0 6px rgba(255, 184, 48, 0.45));
}

/* Action buttons */
.row-actions[b-9pjji261ru] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.row-actions form[b-9pjji261ru] {
    display: inline-block;
    margin: 0;
}

.btn-action[b-9pjji261ru] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    color: #c9ccd1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.12s, color 0.12s, background 0.12s, filter 0.12s;
    white-space: nowrap;
}

.btn-action:focus-visible[b-9pjji261ru] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-action--edit[b-9pjji261ru] {
    color: #f4ead5;
    border-color: rgba(244, 234, 213, 0.32);
}

.btn-action--edit:hover[b-9pjji261ru] {
    border-color: #f4ead5;
    color: #f4ead5;
    background: rgba(244, 234, 213, 0.05);
}

.btn-action--unpublish[b-9pjji261ru] {
    color: #d97706;
    border-color: rgba(217, 119, 6, 0.42);
}

.btn-action--unpublish:hover[b-9pjji261ru] {
    border-color: #d97706;
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.btn-action--republish[b-9pjji261ru] {
    color: #c8281f;
    border-color: rgba(200, 40, 31, 0.42);
}

.btn-action--republish:hover[b-9pjji261ru] {
    border-color: #c8281f;
    color: #fff;
    background: rgba(200, 40, 31, 0.18);
}

.btn-action--delete[b-9pjji261ru] {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.32);
}

.btn-action--delete:hover[b-9pjji261ru] {
    border-color: #ef4444;
    color: #fff;
    background: rgba(239, 68, 68, 0.18);
}

/* Empty state */
.admin-photos-empty[b-9pjji261ru] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 56px 32px;
    text-align: center;
    max-width: 1200px;
}

.empty-heading[b-9pjji261ru] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f4ead5;
    margin-bottom: 12px;
}

.empty-caption[b-9pjji261ru] {
    color: rgba(201, 204, 209, 0.58);
    font-size: 13px;
    margin-bottom: 20px;
}

.empty-caption a[b-9pjji261ru] {
    color: #c8281f;
    text-decoration: underline;
}

/* Screen-reader-only */
.sr-only[b-9pjji261ru] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* /Components/Pages/Admin/SisterClubs/AdminSisterClubEdit.razor.rz.scp.css */
/* Plan 09-04 — AdminSisterClubEdit.razor scoped styles */

/* ── Status row ──────────────────────────────────────────────────────────── */
.edit-status-row[b-0rdynd997a] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

/* ── Status chip ─────────────────────────────────────────────────────────── */
.status-chip[b-0rdynd997a] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.status-chip.is-published[b-0rdynd997a] { background: #dcfce7; color: #166534; }
.status-chip.is-pending[b-0rdynd997a]   { background: #fef9c3; color: #854d0e; }
.status-chip.is-rejected[b-0rdynd997a]  { background: #fee2e2; color: #991b1b; }

/* ── Form card ───────────────────────────────────────────────────────────── */
.admin-form-card[b-0rdynd997a] {
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    padding: 28px 24px;
    max-width: 720px;
    margin-bottom: 20px;
}

.admin-form-section[b-0rdynd997a] {
    margin-bottom: 24px;
}

.admin-form-section:last-child[b-0rdynd997a] {
    margin-bottom: 0;
}

.admin-form-section-label[b-0rdynd997a] {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 12px;
}

/* ── Fields ──────────────────────────────────────────────────────────────── */
.field[b-0rdynd997a] {
    margin-bottom: 16px;
}

.field:last-child[b-0rdynd997a] {
    margin-bottom: 0;
}

.field label[b-0rdynd997a] {
    display: block;
    font-weight: 600;
    font-size: .86rem;
    margin-bottom: 4px;
}

.field label .req[b-0rdynd997a] {
    color: #c0392b;
    margin-left: 2px;
}

.field label .opt[b-0rdynd997a] {
    font-weight: 400;
    font-size: .78rem;
    color: #999;
    margin-left: 6px;
}

.field input[type="text"][b-0rdynd997a],
.field input[type="url"][b-0rdynd997a],
.field textarea[b-0rdynd997a] {
    width: 100%;
    max-width: 580px;
    padding: 9px 12px;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    font-size: .9rem;
    font-family: inherit;
    box-sizing: border-box;
}

.field textarea[b-0rdynd997a] {
    resize: vertical;
    min-height: 80px;
}

.field-hint[b-0rdynd997a] {
    font-size: .78rem;
    color: #888;
    margin: 4px 0 0;
}

/* ── Logo preview row ────────────────────────────────────────────────────── */
.current-logo-row[b-0rdynd997a] {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.current-logo-thumb[b-0rdynd997a] {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #d8d0c4;
    border-radius: 4px;
    background: #fdf8f0;
}

.current-logo-info .current-logo-label[b-0rdynd997a] {
    font-size: .8rem;
    color: #888;
    margin: 0 0 2px;
}

.current-logo-info .current-logo-name[b-0rdynd997a] {
    font-size: .86rem;
    font-weight: 600;
    margin: 0;
}

/* ── Upload zone ─────────────────────────────────────────────────────────── */
.upload-zone[b-0rdynd997a] {
    border: 2px dashed #d8d0c4;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    background: #fcfaf7;
    max-width: 420px;
}

.upload-cta[b-0rdynd997a] {
    font-weight: 600;
    margin: 6px 0 4px;
}

.upload-cta span[b-0rdynd997a] {
    color: #c0392b;
    text-decoration: underline;
    cursor: pointer;
}

.upload-hint[b-0rdynd997a] {
    font-size: .78rem;
    color: #888;
    margin: 0;
}

/* ── Remove-logo checkbox ────────────────────────────────────────────────── */
.remove-logo-row[b-0rdynd997a] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.remove-logo-row input[type="checkbox"][b-0rdynd997a] {
    width: 16px;
    height: 16px;
    accent-color: #c0392b;
}

.remove-logo-row label[b-0rdynd997a] {
    font-size: .86rem;
    color: #555;
    cursor: pointer;
}

/* ── Submitter panel ─────────────────────────────────────────────────────── */
.submitter-panel[b-0rdynd997a] {
    background: #f8f4ef;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 20px;
    max-width: 580px;
}

.submitter-panel-heading[b-0rdynd997a] {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 10px;
}

.submitter-field[b-0rdynd997a] {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
    font-size: .86rem;
}

.submitter-field .sf-label[b-0rdynd997a] {
    color: #888;
    min-width: 90px;
}

.submitter-field .sf-value[b-0rdynd997a] {
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Error list ──────────────────────────────────────────────────────────── */
.admin-form-errors[b-0rdynd997a] {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 12px 16px 12px 32px;
    color: #991b1b;
    font-size: .88rem;
    margin-bottom: 16px;
    max-width: 580px;
}

/* ── Form actions ────────────────────────────────────────────────────────── */
.admin-form-actions[b-0rdynd997a] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.btn-save[b-0rdynd997a] {
    background: #c0392b;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.btn-save:hover[b-0rdynd997a] {
    opacity: .88;
}

.btn-cancel[b-0rdynd997a] {
    color: #c0392b;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 600;
}

.admin-form-actions-spacer[b-0rdynd997a] {
    flex: 1;
}

.admin-form-actions-helper[b-0rdynd997a] {
    font-size: .78rem;
    color: #999;
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-0rdynd997a] {
    border-color: var(--admin-accent-red, #c0392b);
    background: var(--admin-surface-raised, #ffffff);
}
.upload-zone.is-selected[b-0rdynd997a] {
    border-style: solid;
    border-color: var(--admin-state-ok-border, #2e7d32);
}
.upload-zone.is-selected .upload-cta[b-0rdynd997a] {
    color: var(--admin-state-ok-fg, #1b5e20);
}
/* /Components/Pages/Admin/SisterClubs/AdminSisterClubNew.razor.rz.scp.css */
/*
    Plan 09-03 — /admin/sister-clubs/new page styles.
    Source: features/v01/09-sister-clubs/artifacts/09-03-admin-sister-club-new.html
    Inherits topbar / sidebar / admin-page-eyebrow / admin-page-title /
    admin-page-subtitle from the F04 admin-shell tokens (admin-shell.css).
    Visual contract matches F07 /admin/events/new and F08 /admin/photos/new —
    same design-system tokens, same admin-form-card + upload-zone + actions.
*/

/* Errors banner */
.admin-form-errors[b-1kxtfvq7gx] {
    list-style: none;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.36);
    border-radius: 4px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-errors li[b-1kxtfvq7gx] {
    color: #ef4444;
    font-size: 13px;
    padding: 3px 0 3px 18px;
    position: relative;
}

.admin-form-errors li[b-1kxtfvq7gx]::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 14px;
}

/* Form card */
.admin-form-card[b-1kxtfvq7gx] {
    background: #131313;
    border: 1px solid rgba(201, 204, 209, 0.1);
    border-radius: 6px;
    padding: 32px 36px 28px;
    margin-bottom: 24px;
    max-width: 720px;
}

.admin-form-section[b-1kxtfvq7gx] {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(244, 234, 213, 0.09);
}

.admin-form-section:last-of-type[b-1kxtfvq7gx] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.admin-form-section-label[b-1kxtfvq7gx] {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 204, 209, 0.36);
    margin-bottom: 16px;
    display: block;
}

/* Fields */
.field[b-1kxtfvq7gx] {
    margin-bottom: 20px;
}

.field:last-child[b-1kxtfvq7gx] {
    margin-bottom: 0;
}

.field label[b-1kxtfvq7gx] {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #f4ead5;
    margin-bottom: 8px;
}

.field label .req[b-1kxtfvq7gx] {
    color: #c8281f;
    font-weight: 700;
}

.field label .opt[b-1kxtfvq7gx] {
    color: rgba(201, 204, 209, 0.36);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-left: auto;
}

.field input[type="text"][b-1kxtfvq7gx],
.field input[type="url"][b-1kxtfvq7gx],
.field textarea[b-1kxtfvq7gx] {
    width: 100%;
    background: #1a1a1d;
    color: #f4ead5;
    border: 1px solid rgba(201, 204, 209, 0.18);
    border-radius: 3px;
    padding: 10px 12px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    transition: border-color 0.12s, background 0.12s;
}

.field input[type="text"]:focus[b-1kxtfvq7gx],
.field input[type="url"]:focus[b-1kxtfvq7gx],
.field textarea:focus[b-1kxtfvq7gx] {
    outline: none;
    border-color: #f4ead5;
    background: #222226;
}

.field textarea[b-1kxtfvq7gx] {
    resize: vertical;
    min-height: 96px;
    font-family: inherit;
}

.field-hint[b-1kxtfvq7gx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    margin-top: 6px;
}

/* Upload zone */
.upload-zone[b-1kxtfvq7gx] {
    position: relative;
    border: 2px dashed rgba(201, 204, 209, 0.26);
    border-radius: 5px;
    padding: 28px 24px;
    text-align: center;
    background: #1a1a1d;
    transition: border-color 0.14s, background 0.14s;
}

.upload-zone:hover[b-1kxtfvq7gx] {
    border-color: #f4ead5;
}

.upload-zone input[type="file"][b-1kxtfvq7gx] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-1kxtfvq7gx] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #f4ead5;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.upload-cta span[b-1kxtfvq7gx] {
    color: #c8281f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.upload-hint[b-1kxtfvq7gx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.58);
    line-height: 1.5;
}

/* Actions */
.admin-form-actions[b-1kxtfvq7gx] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    max-width: 720px;
}

.btn-publish[b-1kxtfvq7gx] {
    font-family: 'Big Shoulders Display', 'Oswald', 'Impact', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #c8281f 0%, #951810 100%);
    border: 1px solid #c8281f;
    padding: 12px 28px;
    border-radius: 3px;
    cursor: pointer;
    transition: filter 0.12s, transform 0.04s;
}

.btn-publish:hover[b-1kxtfvq7gx] {
    filter: brightness(1.08);
}

.btn-publish:active[b-1kxtfvq7gx] {
    transform: translateY(1px);
}

.btn-publish:focus-visible[b-1kxtfvq7gx] {
    outline: 2px solid #f4ead5;
    outline-offset: 2px;
}

.btn-cancel[b-1kxtfvq7gx] {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #c9ccd1;
    background: transparent;
    border: 1px solid rgba(201, 204, 209, 0.26);
    padding: 11px 22px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.14s, color 0.14s;
}

.btn-cancel:hover[b-1kxtfvq7gx] {
    border-color: #c9ccd1;
    color: #f4ead5;
}

.admin-form-actions-spacer[b-1kxtfvq7gx] {
    flex: 1;
}

.admin-form-actions-helper[b-1kxtfvq7gx] {
    font-size: 12px;
    color: rgba(201, 204, 209, 0.36);
    font-style: italic;
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-1kxtfvq7gx] {
    border-color: var(--admin-accent-red, #c0392b);
    background: var(--admin-surface-raised, #ffffff);
}
.upload-zone.is-selected[b-1kxtfvq7gx] {
    border-style: solid;
    border-color: var(--admin-state-ok-border, #2e7d32);
}
.upload-zone.is-selected .upload-cta[b-1kxtfvq7gx] {
    color: var(--admin-state-ok-fg, #1b5e20);
}
/* /Components/Pages/Admin/SisterClubs/AdminSisterClubs.razor.rz.scp.css */
/* Plan 09-04 — AdminSisterClubs.razor scoped styles */

/* ── Page header ─────────────────────────────────────────────────────────── */
.admin-clubs-header[b-ydgm849sfj] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 16px;
}

.admin-clubs-header-text[b-ydgm849sfj] {
    flex: 1;
}

.btn-new-club[b-ydgm849sfj] {
    background: #c0392b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    transition: opacity .15s;
}

.btn-new-club:hover[b-ydgm849sfj] {
    opacity: .88;
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.admin-clubs-empty[b-ydgm849sfj] {
    background: #fff;
    border: 1px dashed #d8d0c4;
    border-radius: 6px;
    padding: 48px 24px;
    text-align: center;
}

.empty-heading[b-ydgm849sfj] {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.empty-caption[b-ydgm849sfj] {
    color: #888;
    margin: 0;
    font-size: .9rem;
}

/* ── Table ───────────────────────────────────────────────────────────────── */
.admin-clubs-table-wrap[b-ydgm849sfj] {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #d8d0c4;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

.admin-clubs-table[b-ydgm849sfj] {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.admin-clubs-table thead tr[b-ydgm849sfj] {
    background: #1a1a1a;
    color: #c0c0c0;
    text-align: left;
}

.admin-clubs-table thead th[b-ydgm849sfj] {
    padding: 12px 16px;
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-clubs-table .admin-clubs-row[b-ydgm849sfj] {
    border-top: 1px solid #d8d0c4;
    transition: background .1s;
}

.admin-clubs-table .admin-clubs-row:hover[b-ydgm849sfj] {
    background: #fafaf8;
}

.admin-clubs-table td[b-ydgm849sfj] {
    padding: 12px 16px;
    vertical-align: middle;
}

/* ── Column widths ───────────────────────────────────────────────────────── */
.col-logo[b-ydgm849sfj]    { width: 96px; }
.col-name[b-ydgm849sfj]    { min-width: 160px; }
.col-url[b-ydgm849sfj]     { min-width: 200px; }
.col-status[b-ydgm849sfj]  { width: 120px; white-space: nowrap; }
.col-actions[b-ydgm849sfj] { width: 220px; }

/* ── Logo thumbnail ──────────────────────────────────────────────────────── */
.club-logo[b-ydgm849sfj] {
    display: block;
    border: 1px solid #d8d0c4;
    border-radius: 4px;
    background: #fdf8f0;
}

.club-logo-placeholder[b-ydgm849sfj] {
    width: 80px;
    height: 80px;
    border: 1px dashed #d8d0c4;
    border-radius: 4px;
    background: #f0ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: .7rem;
    text-align: center;
}

/* ── Club name + URL ─────────────────────────────────────────────────────── */
.club-name[b-ydgm849sfj] {
    font-weight: 600;
}

.club-url-link[b-ydgm849sfj] {
    color: #c0392b;
    text-decoration: none;
    word-break: break-all;
    font-size: .83rem;
}

.club-url-link:hover[b-ydgm849sfj] {
    text-decoration: underline;
}

/* ── Status badges ───────────────────────────────────────────────────────── */
.status-badge[b-ydgm849sfj] {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.status-badge--published[b-ydgm849sfj] { background: #dcfce7; color: #166534; }
.status-badge--pending[b-ydgm849sfj]   { background: #fef9c3; color: #854d0e; }
.status-badge--rejected[b-ydgm849sfj]  { background: #fee2e2; color: #991b1b; }

/* ── Row action buttons ──────────────────────────────────────────────────── */
.row-actions[b-ydgm849sfj] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-action[b-ydgm849sfj] {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: opacity .15s;
    background: none;
    font-family: inherit;
}

.btn-action--edit[b-ydgm849sfj]      { background: #c0c0c0; color: #1a1a1a; }
.btn-action--unpublish[b-ydgm849sfj] { background: #fef3c7; color: #92400e; }
.btn-action--republish[b-ydgm849sfj] { background: #d1fae5; color: #065f46; }
.btn-action--delete[b-ydgm849sfj]    { background: #fee2e2; color: #991b1b; }
.btn-action:hover[b-ydgm849sfj]      { opacity: .8; }
/* /Components/Pages/Admin/SiteContent/AdminContactRecipient.razor.rz.scp.css */
/* Plan 10-02 — AdminContactRecipient scoped styles.
   Inherits admin shell tokens (chrome/red/black). Mirrors AdminSisterClubEdit.razor.css.
   Only component-specific overrides live here; common admin form classes are in app.css. */

/* ── Current-value display panel ──
   V1.3 follow-up: --admin-card-bg / --admin-card-border / --admin-muted
   were never defined in admin-theme.css, so this panel was rendering via
   dark hex fallbacks. Mapped to the real semantic tokens so the panel
   tracks the light-mode flip. */
.admin-info-panel[b-qkmfzjtkof] {
    background: var(--admin-surface, #1a1a1a);
    border: 1px solid var(--admin-border, #333);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-info-row[b-qkmfzjtkof] {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.admin-info-label[b-qkmfzjtkof] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--admin-text-muted, #888);
    min-width: 9rem;
    flex-shrink: 0;
}

.admin-info-value[b-qkmfzjtkof] {
    font-size: 0.9375rem;
    color: var(--admin-text, #e8e8e8);
    word-break: break-all;
}

/* ── Error/alert panel ── */
.admin-alert[b-qkmfzjtkof] {
    border-radius: 5px;
    padding: 0.875rem 1.125rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.admin-alert--error[b-qkmfzjtkof] {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #fca5a5;
}
/* /Components/Pages/Admin/SiteContent/AdminSiteContent.razor.rz.scp.css */
/* Plan 10-01 — AdminSiteContent list page scoped styles.
   Mirrors admin-clubs-table pattern from AdminSisterClubs.razor.css (F09).
   Chrome/dark admin theme inherited from AdminLayout.

   V1.3 follow-up: replaced non-existent --color-chrome-*/--color-red/
   --color-admin-* var() refs (which were rendering only via hex fallback)
   with the real --admin-* tokens from admin-theme.css. Mirrors the
   sibling AdminContactRecipient.razor.css pattern (real token + hex
   fallback). */

.admin-content-empty[b-uenjd2butb] {
    padding: 2rem;
    text-align: center;
    color: var(--admin-text-muted, #a0a0a0);
}

.empty-heading[b-uenjd2butb] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--admin-text, #f0f0f0);
}

.empty-caption[b-uenjd2butb] {
    font-size: 0.875rem;
    color: var(--admin-text-muted, #a0a0a0);
}

.admin-content-table-wrap[b-uenjd2butb] {
    overflow-x: auto;
    border-radius: 0.5rem;
    border: 1px solid var(--admin-border, #383838);
}

.admin-content-table[b-uenjd2butb] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-content-table thead[b-uenjd2butb] {
    background: var(--admin-bg, #1a1a1a);
}

.admin-content-table th[b-uenjd2butb] {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--admin-text-muted, #a0a0a0);
    white-space: nowrap;
}

.admin-content-row[b-uenjd2butb] {
    border-top: 1px solid var(--admin-border, #383838);
    transition: background-color 0.15s;
}

.admin-content-row:hover[b-uenjd2butb] {
    background: rgba(255, 255, 255, 0.03);
}

.admin-content-table td[b-uenjd2butb] {
    padding: 0.875rem 1rem;
    vertical-align: middle;
    color: var(--admin-text, #f0f0f0);
}

.col-key[b-uenjd2butb] {
    width: 22%;
}

.col-value[b-uenjd2butb] {
    width: 38%;
}

.col-updated-at[b-uenjd2butb] {
    width: 18%;
    white-space: nowrap;
}

.col-updated-by[b-uenjd2butb] {
    width: 12%;
}

.col-actions[b-uenjd2butb] {
    width: 10%;
    text-align: right;
}

.content-key[b-uenjd2butb] {
    font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.8125rem;
    color: var(--admin-accent-red, #c8102e);
    background: rgba(239, 68, 68, 0.08);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.content-value-preview[b-uenjd2butb] {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 40ch;
    color: var(--admin-text, #f0f0f0);
}

.content-meta[b-uenjd2butb] {
    font-size: 0.8125rem;
    color: var(--admin-text-muted, #a0a0a0);
}

.btn-action[b-uenjd2butb] {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
    border: 1px solid transparent;
}

.btn-action--edit[b-uenjd2butb] {
    color: var(--admin-text, #f0f0f0);
    border-color: var(--admin-border, #383838);
    background: transparent;
}

.btn-action--edit:hover[b-uenjd2butb] {
    background: var(--admin-accent-red, #c8102e);
    border-color: var(--admin-accent-red, #c8102e);
    color: white;
}
/* /Components/Pages/Admin/SiteContent/AdminSiteContentEdit.razor.rz.scp.css */
/* Plan 10-01 — AdminSiteContentEdit page scoped styles.
   Mirrors AdminSisterClubEdit.razor.css (F09) admin-form-card pattern.
   Chrome/dark admin theme inherited from AdminLayout.

   V1.3 follow-up: replaced non-existent --color-chrome-*/--color-red/
   --color-admin-* var() refs (which were rendering only via hex fallback)
   with the real --admin-* tokens from admin-theme.css. Mirrors the
   sibling AdminContactRecipient.razor.css pattern (real token + hex
   fallback). */

.content-key-inline[b-bnpmsqqysv] {
    font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
    font-size: 0.875rem;
    color: var(--admin-accent-red, #c8102e);
    background: rgba(239, 68, 68, 0.08);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
}

.content-key-display[b-bnpmsqqysv] {
    display: block;
    font-family: ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
    font-size: 1rem;
    color: var(--admin-accent-red, #c8102e);
    background: rgba(239, 68, 68, 0.08);
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
}

.content-value-textarea[b-bnpmsqqysv] {
    width: 100%;
    min-height: 12rem;
    padding: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    background: var(--admin-surface, #2a2a2a);
    color: var(--admin-text, #f0f0f0);
    border: 1px solid var(--admin-border, #383838);
    border-radius: 0.375rem;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.15s;
}

.content-value-textarea:focus[b-bnpmsqqysv] {
    outline: none;
    border-color: var(--admin-accent-red, #c8102e);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.admin-form-section--meta[b-bnpmsqqysv] {
    background: rgba(17, 24, 39, 0.5);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
}

.meta-grid[b-bnpmsqqysv] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-field[b-bnpmsqqysv] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label[b-bnpmsqqysv] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--admin-text-muted, #a0a0a0);
}

.meta-value[b-bnpmsqqysv] {
    font-size: 0.875rem;
    color: var(--admin-text, #f0f0f0);
}

.field--readonly[b-bnpmsqqysv] {
    margin-bottom: 0;
}

/* Shared admin form styles */
.admin-form-card[b-bnpmsqqysv] {
    background: var(--admin-surface, #2a2a2a);
    border: 1px solid var(--admin-border, #383838);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.admin-form-section[b-bnpmsqqysv] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--admin-border, #383838);
}

.admin-form-section:last-child[b-bnpmsqqysv] {
    border-bottom: none;
}

.admin-form-section-label[b-bnpmsqqysv] {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--admin-text-muted, #a0a0a0);
    margin-bottom: 0.875rem;
}

.field[b-bnpmsqqysv] {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.field-hint[b-bnpmsqqysv] {
    font-size: 0.8125rem;
    color: var(--admin-text-muted, #a0a0a0);
    margin: 0;
}

.admin-form-errors[b-bnpmsqqysv] {
    list-style: none;
    padding: 0.875rem 1rem;
    margin: 0 0 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 0.375rem;
    color: #fca5a5;
    font-size: 0.875rem;
}

.admin-form-errors li + li[b-bnpmsqqysv] {
    margin-top: 0.25rem;
}

.admin-form-actions[b-bnpmsqqysv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.admin-form-actions-spacer[b-bnpmsqqysv] {
    flex: 1;
}

.admin-form-actions-helper[b-bnpmsqqysv] {
    font-size: 0.8125rem;
    color: var(--admin-text-muted, #a0a0a0);
}

.btn-save[b-bnpmsqqysv] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--admin-accent-red, #c8102e);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s;
}

.btn-save:hover[b-bnpmsqqysv] {
    background: #dc2626;
}

.btn-cancel[b-bnpmsqqysv] {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--admin-text-muted, #a0a0a0);
    border: 1px solid var(--admin-border, #383838);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-cancel:hover[b-bnpmsqqysv] {
    background: var(--admin-border, #383838);
    color: var(--admin-text, #f0f0f0);
}

.sr-only[b-bnpmsqqysv] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Plan 10-03: Edit / Preview tab strip ──────────────────────────── */

.edit-tabs[b-bnpmsqqysv] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
    border-bottom: 2px solid var(--admin-border, #383838);
}

.edit-tabs .tab[b-bnpmsqqysv] {
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: var(--admin-text-muted, #a0a0a0);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.15s, border-color 0.15s;
}

.edit-tabs .tab:hover[b-bnpmsqqysv] {
    color: var(--admin-text, #f0f0f0);
}

.edit-tabs .tab.active[b-bnpmsqqysv] {
    color: var(--admin-accent-red, #c8102e);
    border-bottom-color: var(--admin-accent-red, #c8102e);
}

.tab-js-hint[b-bnpmsqqysv] {
    font-size: 0.75rem;
    color: var(--admin-text-muted, #a0a0a0);
    margin: 0.375rem 0 0.75rem;
}

/* Progressive enhancement: without JS only the .edit panel shows (CSS default). */
/* With JS: site-content-preview.js swaps .active between panels. */
.tab-content[b-bnpmsqqysv] {
    display: none;
}

.tab-content.active[b-bnpmsqqysv] {
    display: block;
}

.content-preview[b-bnpmsqqysv] {
    white-space: pre-wrap;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid var(--admin-border, #383838);
    border-radius: 0.375rem;
    font-family: var(--admin-font-body, 'IBM Plex Sans', system-ui, sans-serif);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--admin-text, #f0f0f0);
    min-height: 12em;
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* =====================================================================
   Contact page — two-card grid (Plan 03-05; migrated F14 Plan 14-01)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/03-public-site-foundation/artifacts/
           03-05-contact.html (Open Design prototype, 2026-05-15)

   F14 Plan 14-01 dogfood migration:
     - The .contact-header / .contact-rule selectors are DELETED. The
       hero is now rendered by <HeroBand Title="Contact" /> (shared
       component, semantic-only CSS).
     - Every raw var(--color-*) reference has been replaced with the
       matching semantic token. Zero raw refs remain. RGBA literals
       (alpha overlays) stay — TD-035 captures them.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  BODY — two-column grid on desktop, stacked on mobile
   ────────────────────────────────────────── */
.contact-body[b-mff7oy3vyo] {
    background-color: var(--surface-page-bg);
    padding: var(--space-12) var(--space-6) var(--space-16);
}

.contact-grid[b-mff7oy3vyo] {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-10);
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid[b-mff7oy3vyo] {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* ──────────────────────────────────────────
   ②  FACEBOOK CARD — cream-pearl reading surface
   ────────────────────────────────────────── */
.facebook-card[b-mff7oy3vyo] {
    background-color: var(--surface-inverse-bg);
    border: 1px solid var(--border-on-light);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    /* Inverted shadow recipe (DESIGN.md): inset top white-highlight + inset
       bottom dark-shadow. NOT a drop shadow. Matches the About reading card. */
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.60),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.facebook-card h2[b-mff7oy3vyo] {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--text-heading-inverse);
    margin: 0 0 var(--space-4);
}

.facebook-card p[b-mff7oy3vyo] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-body-inverse);
    margin: 0 0 var(--space-6);
}

.facebook-link[b-mff7oy3vyo] {
    display: inline-block;
    background: var(--gradient-chrome-polish);
    /* V1.3 light-mode flip: chrome button needs dark text. --text-heading
       resolves to lacquer-black in light mode (the right contrast against
       the chrome-polish gradient regardless of page surface). */
    color: var(--text-heading);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    padding: var(--space-3) var(--space-6);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-chrome-top), var(--shadow-chrome-bottom);
    transition: background 120ms ease, box-shadow 160ms ease;
}

.facebook-link:hover[b-mff7oy3vyo],
.facebook-link:focus[b-mff7oy3vyo] {
    background: var(--gradient-chrome-hot);
    box-shadow:
        var(--shadow-chrome-top),
        var(--shadow-chrome-bottom),
        0 0 24px rgba(30, 216, 255, 0.35);
    outline: none;
}

/* ──────────────────────────────────────────
   ③  FORM CARD — onyx-lacquer working surface
   ────────────────────────────────────────── */
.form-card[b-mff7oy3vyo] {
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
}

/* sr-only — hide visually but keep accessible to screen readers */
.sr-only[b-mff7oy3vyo] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ──────────────────────────────────────────
   ④  TAB STRIP — F14 Plan 14-03
   Three-pane tab strip inside the form-card.
   ────────────────────────────────────────── */
.contact-tablist[b-mff7oy3vyo] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    border-bottom: 1px solid var(--border-on-dark);
    margin-bottom: var(--space-6);
}

.contact-tab[b-mff7oy3vyo] {
    appearance: none;
    background: transparent;
    border: none;
    border-bottom: 4px solid transparent;
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--duration-fast) var(--easing-standard),
                border-color var(--duration-fast) var(--easing-standard);
}

.contact-tab:hover[b-mff7oy3vyo],
.contact-tab:focus-visible[b-mff7oy3vyo] {
    color: var(--text-heading);
    outline: none;
}

.contact-tab--active[b-mff7oy3vyo] {
    color: var(--text-heading);
    border-bottom-color: var(--accent-primary);
}

.contact-tab:focus-visible[b-mff7oy3vyo] {
    /* Inset the focus ring so it's inside the bottom border. */
    box-shadow: 0 0 0 2px var(--focus-ring) inset;
}

.contact-pane[b-mff7oy3vyo] {
    /* hidden attribute owns visibility; this is layout-only. */
}

.contact-pane-heading[b-mff7oy3vyo] {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--text-heading);
    margin: 0 0 var(--space-5);
}

@media (max-width: 600px) {
    .contact-tablist[b-mff7oy3vyo] {
        gap: 0;
    }
    .contact-tab[b-mff7oy3vyo] {
        padding: var(--space-3) var(--space-3);
        font-size: 13px;
        flex: 1 1 auto;
        min-width: 0;
    }
}
/* /Components/Pages/Cruises.razor.rz.scp.css */
/* =====================================================================
   Cruises page — F14 Plan 14-01 (hero) + 14-04 (full-year + semantic)
   ---------------------------------------------------------------------
   F14 Plan 14-04 rewrite: every selector below uses ONLY the F14
   semantic token layer. Pre-14-04 the file was littered with hardcoded
   hex values (#0e0e10, #c0c0c0, #cc1f1a, #f5f0e1, #1a1a1d, etc.) — the
   plan body's "Cruises.razor.css carries 33 raw var(--color-*) refs"
   recon was incorrect; the file actually used bare hex, which is even
   worse. This rewrite addresses both: hex → semantic, AND the new
   Featured-Events-Current-Year sub-bands land on semantic from inception.

   The chrome-text gradient on .cruises-empty-card h2 is preserved as a
   typographic effect (chrome-polish gradient applied via background-clip);
   the gradient stops are intentional chrome anchors, not data colors.

   New selectors (14-04):
     .featured-events-subheading      — Upcoming / Past sub-band headings
     .featured-events-subheading--past — Past variant (muted)
     .cruises-grid--past              — grid for past events (de-emphasized)
     .cruises-card--past              — per-card past modifier (opacity)
     .cruises-past-chip               — "Past" badge overlay on flyer
     .featured-events-empty-sub       — "no upcoming" sub-empty copy
   ===================================================================== */

/* ---------- Grid ---------- */
.cruises-grid-wrap[b-avot90gs2a] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 24px 96px;
}

.cruises-grid[b-avot90gs2a] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .cruises-grid[b-avot90gs2a] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cruises-grid[b-avot90gs2a] {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.cruises-grid > li[b-avot90gs2a] {
    list-style: none;
}

/* ---------- Card ---------- */
.cruises-card[b-avot90gs2a] {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: transform 220ms var(--easing-standard),
                box-shadow 220ms var(--easing-standard),
                border-color 220ms var(--easing-standard);
    height: 100%;
}

.cruises-card:hover[b-avot90gs2a],
.cruises-card:focus-within[b-avot90gs2a] {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow:
        inset 0 0 0 1px var(--border-soft),
        0 12px 32px -8px rgba(0, 0, 0, 0.7);
}

.cruises-flyer[b-avot90gs2a] {
    position: relative;
    aspect-ratio: 4 / 3;
    width: 100%;
    background-color: var(--surface-page-bg);
    overflow: hidden;
}

.cruises-flyer img[b-avot90gs2a] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transition: transform 360ms var(--easing-standard);
}

.cruises-card:hover .cruises-flyer img[b-avot90gs2a] {
    transform: scale(1.025);
}

.cruises-title-band[b-avot90gs2a] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 18px 12px;
    background: rgba(10, 10, 10, 0.78);
    border-top: 1px solid var(--border-soft);
    backdrop-filter: blur(2px);
}

.cruises-title-band h2[b-avot90gs2a] {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--accent-primary);
    text-shadow:
        0 1px 0 rgba(192, 192, 192, 0.45),
        0 2px 0 rgba(0, 0, 0, 0.6);
    margin: 0;
}

.cruises-meta[b-avot90gs2a] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px 18px;
    background-color: var(--surface-page-bg);
    border-top: 1px solid var(--border-on-dark);
}

.cruises-date[b-avot90gs2a] {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-body);
    letter-spacing: 0.01em;
}

.cruises-location[b-avot90gs2a] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.3;
}

.cruises-pin[b-avot90gs2a] {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    color: var(--accent-primary);
}

.cruises-no-date[b-avot90gs2a] {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
    font-size: 13.5px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.cruises-card--no-meta .cruises-meta[b-avot90gs2a] {
    display: none;
}

/* ---------- F14 Plan 14-04 — Past event variant ---------- */
.cruises-card--past[b-avot90gs2a] {
    opacity: 0.62;
}

.cruises-card--past:hover[b-avot90gs2a] {
    opacity: 0.85;
}

.cruises-past-chip[b-avot90gs2a] {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--cta-text);
    background-color: var(--accent-primary-deep);
    padding: 3px 10px;
    border-radius: 999px;
    z-index: 1;
}

/* ---------- Empty state ---------- */
.cruises-empty[b-avot90gs2a] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 24px 120px;
}

.cruises-empty-card[b-avot90gs2a] {
    max-width: 520px;
    margin: 0 auto;
    padding: 56px 36px 52px;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    box-shadow:
        inset 0 0 0 1px rgba(232, 232, 232, 0.06),
        0 24px 48px -16px rgba(0, 0, 0, 0.65);
    text-align: center;
}

.cruises-empty-card h2[b-avot90gs2a] {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin: 0 0 14px;
    /* Chrome-polish typographic effect — preserved as a deliberate
       4-stop gradient via the existing chrome-polish token. */
    background: var(--gradient-chrome-polish);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cruises-empty-card p[b-avot90gs2a] {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.cruises-empty-card a[b-avot90gs2a] {
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 160ms var(--easing-standard),
                color 160ms var(--easing-standard);
    padding-bottom: 1px;
}

.cruises-empty-card a:hover[b-avot90gs2a] {
    border-bottom-color: var(--border-strong);
    color: var(--accent-primary-hover);
}

.cruises-empty-card a:focus-visible[b-avot90gs2a] {
    outline: 2px solid var(--border-strong);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .cruises-card[b-avot90gs2a],
    .cruises-flyer img[b-avot90gs2a] {
        transition: none;
    }
    .cruises-card:hover[b-avot90gs2a] {
        transform: none;
    }
    .cruises-card:hover .cruises-flyer img[b-avot90gs2a] {
        transform: none;
    }
}

/* =====================================================================
   V1.3 Item 2: the .weekly-schedule-* selectors moved to the new shared
   WeeklySchedule.razor.css. Cruises.razor now consumes
   <WeeklySchedule Mode="Full" /> and renders identically to Home.
   ===================================================================== */

/* ---------- Section divider ---------- */
.cruises-section-divider[b-avot90gs2a] {
    max-width: 1080px;
    margin: 16px auto 32px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(192, 192, 192, 0.4) 30%,
        rgba(192, 192, 192, 0.4) 70%,
        transparent);
}

/* ---------- Featured Events section wrap ----------
   V1.3 Item 4: Cruises-page conformity. The section now mirrors the
   Home page feed pattern — outer band shares --surface-page-bg with
   the rest of the page; the heading carries the same red-rule
   underline treatment that .feed-heading uses (via ::after rather
   than a border on the heading-rail). Visual sibling of EventsNext7Days
   + the now-shared WeeklySchedule heading. */
.featured-events-section[b-avot90gs2a] {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px 96px;
}

.featured-events-heading-rail[b-avot90gs2a] {
    max-width: 1080px;
    margin: 0 auto 28px;
}

.featured-events-heading[b-avot90gs2a] {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-heading);
    margin: 0;
}

.featured-events-heading[b-avot90gs2a]::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: var(--space-3);
    background-color: var(--accent-primary);
}

.cruises-empty-card--featured[b-avot90gs2a] {
    padding: 32px 28px;
    max-width: 620px;
}

.cruises-empty-card--featured p[b-avot90gs2a] {
    margin-bottom: 8px;
}

/* ---------- F14 Plan 14-04 — Featured Events sub-bands ---------- */
.featured-events-subheading[b-avot90gs2a] {
    max-width: 1080px;
    margin: 24px auto 16px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--accent-primary);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-on-dark);
}

.featured-events-subheading--past[b-avot90gs2a] {
    color: var(--text-muted);
    margin-top: 48px;
}

.featured-events-empty-sub[b-avot90gs2a] {
    max-width: 1080px;
    margin: 12px auto 32px;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 14.5px;
    color: var(--text-muted);
}

.cruises-grid--past[b-avot90gs2a] {
    /* Same grid geometry as .cruises-grid; modifier exists for explicit
       targeting in tests and for future bulk visual tweaks. */
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* =====================================================================
   Home page — F14 Plan 14-02 + Plan 14-01 + V1.3 tuning (Item 1)
   ---------------------------------------------------------------------
   The hero is rendered by <HeroBand /> (14-01). The .featured band was
   removed in 14-02. The .home-about fold (14-02) was REMOVED in V1.3 at
   the operator's walkthrough; the Welcome card now carries the warmer
   voice without a second "About" pane.

   This stylesheet now owns ONLY:
     - .welcome / .welcome-card (preserved reading card)
     - .home-cta / .home-cta-inner / .home-cta-link (closing Facebook band)

   Zero raw var(--color-*) refs — semantic tokens only.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  WELCOME CARD — reading island over the cream page
   ────────────────────────────────────────── */
.welcome[b-ocx3aaz723] {
    background-color: var(--surface-page-bg);
    padding: var(--space-10) var(--space-6);
    display: flex;
    justify-content: center;
}

.welcome-card[b-ocx3aaz723] {
    background-color: var(--surface-inverse-bg);
    max-width: 1100px;
    width: 100%;
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    border: 1px solid var(--border-on-light);
    box-shadow:
        inset 0  1px 0 rgba(255, 255, 255, 0.60),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.welcome-card h2[b-ocx3aaz723] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.10;
    color: var(--text-heading-inverse);
    margin: 0 0 var(--space-5) 0;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
}

.welcome-card p[b-ocx3aaz723] {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-body-inverse);
    margin: 0;
}

/* ──────────────────────────────────────────
   ②  FACEBOOK CTA — closing band
   ────────────────────────────────────────── */
.home-cta[b-ocx3aaz723] {
    background-color: var(--surface-page-bg);
    padding: var(--space-10) var(--space-6);
    text-align: center;
}

.home-cta-inner[b-ocx3aaz723] {
    max-width: 1100px;
    margin: 0 auto;
}

.home-cta-inner p[b-ocx3aaz723] {
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 var(--space-5);
}

.home-cta-link[b-ocx3aaz723] {
    display: inline-block;
    background-color: var(--cta-bg);
    color: var(--cta-text);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-md);
    transition: background-color var(--duration-fast) var(--easing-standard);
}

.home-cta-link:hover[b-ocx3aaz723],
.home-cta-link:focus[b-ocx3aaz723] {
    background-color: var(--cta-bg-hover);
    outline: none;
}
/* /Components/Pages/SubmitCruiseConfirmation.razor.rz.scp.css */
/* =====================================================================
   Submit Cruise Confirmation page — title-band + cream-pearl card
   (Plan 11-02)
   ---------------------------------------------------------------------
   Mirrors SubmitSisterClubConfirmation.razor.css verbatim — visual
   cohesion across all moderated-submission confirmation flows (events,
   photos, sister clubs, weekly cruises).

   V1.3 follow-up: migrated to semantic tokens. Header stays a dark
   island (--surface-inverse-bg) — it IS this page's hero. Body band
   flips to the cream page surface; card flips to bone-white.
   ===================================================================== */

.confirm-header[b-ruwqihlykj] {
    background-color: var(--surface-inverse-bg);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.confirm-header-inner[b-ruwqihlykj] {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-header-inner h1[b-ruwqihlykj] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--accent-primary);
    margin: 0;
}

.confirm-rule[b-ruwqihlykj] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-primary);
    border: none;
    margin: var(--space-6) auto 0;
}

.confirm-body[b-ruwqihlykj] {
    background-color: var(--surface-page-bg);
    padding: var(--space-12) var(--space-6) var(--space-20);
}

.confirm-card[b-ruwqihlykj] {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.confirm-card h2[b-ruwqihlykj] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--accent-primary);
    margin: 0 0 var(--space-4);
}

.confirm-card p[b-ruwqihlykj] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0 0 var(--space-8);
}

.confirm-back-link[b-ruwqihlykj] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--accent-primary);
    background-color: var(--surface-card-bg);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.confirm-back-link:hover[b-ruwqihlykj] {
    background-color: var(--cta-bg);
    color: var(--cta-text);
}

.confirm-back-link:focus-visible[b-ruwqihlykj] {
    outline: none;
    box-shadow: 0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

@media (max-width: 768px) {
    .confirm-card[b-ruwqihlykj] {
        padding: var(--space-8) var(--space-5);
    }
}
/* /Components/Pages/SubmitEventConfirmation.razor.rz.scp.css */
/* =====================================================================
   Submit Event Confirmation page — title-band + cream-pearl card (Plan 06-02)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/06-moderation-queue/artifacts/
           06-02-submit-event-confirmation.html (Open Design prototype, 2026-05-15)

   V1.3 follow-up: migrated to semantic tokens. Header stays a dark
   island (--surface-inverse-bg) — it IS this page's hero. Body band
   flips to the cream page surface; card flips to bone-white so the
   card still reads as the brighter island on the cream page.
   ===================================================================== */

.confirm-header[b-t7xvk9o38f] {
    background-color: var(--surface-inverse-bg);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.confirm-header-inner[b-t7xvk9o38f] {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-header-inner h1[b-t7xvk9o38f] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--accent-primary);
    margin: 0;
}

.confirm-rule[b-t7xvk9o38f] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-primary);
    border: none;
    margin: var(--space-6) auto 0;
}

.confirm-body[b-t7xvk9o38f] {
    background-color: var(--surface-page-bg);
    padding: var(--space-12) var(--space-6) var(--space-20);
}

.confirm-card[b-t7xvk9o38f] {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.confirm-card h2[b-t7xvk9o38f] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--accent-primary);
    margin: 0 0 var(--space-4);
}

.confirm-card p[b-t7xvk9o38f] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0 0 var(--space-8);
}

.confirm-back-link[b-t7xvk9o38f] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--accent-primary);
    background-color: var(--surface-card-bg);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.confirm-back-link:hover[b-t7xvk9o38f] {
    background-color: var(--cta-bg);
    color: var(--cta-text);
}

.confirm-back-link:focus-visible[b-t7xvk9o38f] {
    outline: none;
    box-shadow: 0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

@media (max-width: 768px) {
    .confirm-card[b-t7xvk9o38f] {
        padding: var(--space-8) var(--space-5);
    }
}
/* /Components/Pages/SubmitPhoto.razor.rz.scp.css */
/* =====================================================================
   Submit Photo page — title-band + image-led form card (Plan 08-02)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/08-photos/artifacts/
           08-02-submit-photo.html (Open Design prototype, 2026-05-15)

   Scoped CSS (Blazor's [b-xxxxxxxx] suffix isolates these selectors).
   Tokens come from design-tokens.css (Plan 03-02). Layout mirrors the
   F06 SubmitEvent page for site cohesion — the photo form is the second
   public submission surface and inherits the proven visual shape.

   V1.3 follow-up: migrated to semantic tokens. Body wraps the form on
   the cream page (--surface-page-bg). The form card sits on it as the
   brighter bone-white island (--surface-card-bg).
   ===================================================================== */

/* ──────────────────────────────────────────
   HERO REMOVED — F14 Plan 14-01.
   SubmitPhoto hero is now <HeroBand Title="Submit a Photo" />.
   ────────────────────────────────────────── */

/* ──────────────────────────────────────────
   ①  BODY — single-column form card
   ────────────────────────────────────────── */
.submit-body[b-p3elxm7nq5] {
    background-color: var(--surface-page-bg);
    padding: var(--space-10) var(--space-6) var(--space-16);
}

.submit-card[b-p3elxm7nq5] {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
}

.submit-success[b-p3elxm7nq5] {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-body);
    text-align: center;
    padding: var(--space-8) 0;
}

.submit-errors[b-p3elxm7nq5] {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background-color: rgba(200, 35, 27, 0.08);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.5;
}

.submit-errors li[b-p3elxm7nq5] {
    margin: 0;
}

.submit-errors li + li[b-p3elxm7nq5] {
    margin-top: var(--space-2);
}

/* ──────────────────────────────────────────
   ③  FIELDSET + LEGEND — section dividers
   ────────────────────────────────────────── */
.submit-fieldset[b-p3elxm7nq5] {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.submit-fieldset:last-of-type[b-p3elxm7nq5] {
    margin-bottom: var(--space-6);
}

.submit-fieldset legend[b-p3elxm7nq5] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--accent-primary);
}

.submit-fieldset legend[b-p3elxm7nq5]::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--border-soft);
}

/* ──────────────────────────────────────────
   ④  FIELDS — labels, inputs, hints
   ────────────────────────────────────────── */
.field[b-p3elxm7nq5] {
    margin-bottom: var(--space-5);
}

.field:last-child[b-p3elxm7nq5] {
    margin-bottom: 0;
}

.field label[b-p3elxm7nq5] {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-heading);
}

.req[b-p3elxm7nq5] {
    margin-left: 4px;
    color: var(--accent-primary);
    font-size: 14px;
}

.opt[b-p3elxm7nq5] {
    margin-left: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

/* Input wells: use the page bg (slightly darker than the card) so the
   input sits VISIBLY recessed inside the bone-white card on cream. */
.field input[type="text"][b-p3elxm7nq5],
.field input[type="email"][b-p3elxm7nq5],
.field input[type="tel"][b-p3elxm7nq5],
.field textarea[b-p3elxm7nq5] {
    display: block;
    width: 100%;
    background-color: var(--surface-page-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.5;
    transition: border-color var(--duration-fast) var(--easing-standard),
                box-shadow var(--duration-medium) var(--easing-standard);
}

.field input:focus-visible[b-p3elxm7nq5],
.field textarea:focus-visible[b-p3elxm7nq5] {
    outline: none;
    border-color: var(--border-strong);
    box-shadow: 0 0 0 2px var(--surface-card-bg),
                0 0 0 4px var(--focus-ring);
}

.field textarea[b-p3elxm7nq5] {
    resize: vertical;
    min-height: 100px;
}

.field-hint[b-p3elxm7nq5] {
    margin-top: var(--space-2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────
   ⑤  UPLOAD ZONE — the visual centerpiece
   ────────────────────────────────────────── */
.upload-zone[b-p3elxm7nq5] {
    position: relative;
    border: 2px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    cursor: pointer;
    transition: border-color var(--duration-medium) var(--easing-standard),
                background-color var(--duration-medium) var(--easing-standard);
}

.upload-zone:hover[b-p3elxm7nq5] {
    border-color: var(--accent-primary);
    background-color: rgba(200, 35, 27, 0.04);
}

.upload-zone input[type="file"][b-p3elxm7nq5] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-p3elxm7nq5] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-heading);
    margin: 0 0 var(--space-2);
}

.upload-cta span[b-p3elxm7nq5] {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.upload-hint[b-p3elxm7nq5] {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────
   ⑥  HONEYPOT — offscreen, NOT display:none
   (display:none excludes from form submission;
    we need it submitted-but-empty by humans).
   ────────────────────────────────────────── */
.honeypot[b-p3elxm7nq5] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────
   ⑦  SUBMIT BUTTON — hot-rod red primary CTA
   ────────────────────────────────────────── */
.submit-actions[b-p3elxm7nq5] {
    margin-top: var(--space-8);
    text-align: center;
}

.btn-submit[b-p3elxm7nq5] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--cta-text);
    background-color: var(--cta-bg);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.btn-submit:hover[b-p3elxm7nq5] {
    background-color: var(--cta-bg-hover);
    transform: translateY(-1px);
}

.btn-submit:active[b-p3elxm7nq5] {
    background-color: var(--accent-primary-deep);
    transform: translateY(0);
}

.btn-submit:focus-visible[b-p3elxm7nq5] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

/* ──────────────────────────────────────────
   ⑧  RESPONSIVE — stack on narrow viewports
   ────────────────────────────────────────── */
@media (max-width: 768px) {
    .submit-card[b-p3elxm7nq5] {
        padding: var(--space-6) var(--space-5) var(--space-6);
    }

    .upload-zone[b-p3elxm7nq5] {
        padding: var(--space-8) var(--space-4);
    }
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-p3elxm7nq5] {
    border-color: var(--accent-primary, #c0392b);
    background: var(--surface-card-bg, #ffffff);
}
.upload-zone.is-selected[b-p3elxm7nq5] {
    border-style: solid;
    border-color: var(--accent-primary, #c0392b);
}
.upload-zone.is-selected .upload-cta[b-p3elxm7nq5] {
    color: var(--accent-primary, #c0392b);
}
/* /Components/Pages/SubmitPhotoConfirmation.razor.rz.scp.css */
/* =====================================================================
   Submit Photo Confirmation page — title-band + cream-pearl card (Plan 08-02)
   ---------------------------------------------------------------------
   Mirrors SubmitEventConfirmation.razor.css for visual cohesion across
   all moderated-submission confirmation flows (events, photos, future
   sister-clubs).

   V1.3 follow-up: migrated to semantic tokens. Header stays a dark
   island (--surface-inverse-bg) — it IS this page's hero. Body band
   flips to the cream page surface; card flips to bone-white.
   ===================================================================== */

.confirm-header[b-7zhrqezzww] {
    background-color: var(--surface-inverse-bg);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.confirm-header-inner[b-7zhrqezzww] {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-header-inner h1[b-7zhrqezzww] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--accent-primary);
    margin: 0;
}

.confirm-rule[b-7zhrqezzww] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-primary);
    border: none;
    margin: var(--space-6) auto 0;
}

.confirm-body[b-7zhrqezzww] {
    background-color: var(--surface-page-bg);
    padding: var(--space-12) var(--space-6) var(--space-20);
}

.confirm-card[b-7zhrqezzww] {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.confirm-card h2[b-7zhrqezzww] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--accent-primary);
    margin: 0 0 var(--space-4);
}

.confirm-card p[b-7zhrqezzww] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0 0 var(--space-8);
}

.confirm-back-link[b-7zhrqezzww] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--accent-primary);
    background-color: var(--surface-card-bg);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.confirm-back-link:hover[b-7zhrqezzww] {
    background-color: var(--cta-bg);
    color: var(--cta-text);
}

.confirm-back-link:focus-visible[b-7zhrqezzww] {
    outline: none;
    box-shadow: 0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

@media (max-width: 768px) {
    .confirm-card[b-7zhrqezzww] {
        padding: var(--space-8) var(--space-5);
    }
}
/* /Components/Pages/SubmitSisterClub.razor.rz.scp.css */
/* =====================================================================
   Submit Sister Club page — title-band + URL-led form card (Plan 09-02)
   ---------------------------------------------------------------------
   Source: .planning/features/v01/09-sister-clubs/artifacts/
           09-02-submit-sister-club.html (Open Design prototype, 2026-05-16)

   Scoped CSS (Blazor's [b-xxxxxxxx] suffix isolates these selectors).
   Tokens come from design-tokens.css (Plan 03-02). Layout mirrors the
   F08 SubmitPhoto page for site cohesion — sister-club form is the third
   public submission surface and inherits the proven visual shape.

   V1.3 follow-up: migrated to semantic tokens. Body wraps the form on
   the cream page (--surface-page-bg). The form card sits on it as the
   brighter bone-white island (--surface-card-bg).
   ===================================================================== */

/* ──────────────────────────────────────────
   HERO REMOVED — F14 Plan 14-01.
   SubmitSisterClub hero is now <HeroBand Title="Submit a Sister Club" />.
   ────────────────────────────────────────── */

/* ──────────────────────────────────────────
   ①  BODY — single-column form card
   ────────────────────────────────────────── */
.submit-body[b-unysbcvqec] {
    background-color: var(--surface-page-bg);
    padding: var(--space-10) var(--space-6) var(--space-16);
}

.submit-card[b-unysbcvqec] {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
}

.submit-success[b-unysbcvqec] {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-body);
    text-align: center;
    padding: var(--space-8) 0;
}

.submit-errors[b-unysbcvqec] {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background-color: rgba(200, 35, 27, 0.08);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.5;
}

.submit-errors li[b-unysbcvqec] {
    margin: 0;
}

.submit-errors li + li[b-unysbcvqec] {
    margin-top: var(--space-2);
}

/* ──────────────────────────────────────────
   ③  FIELDSET + LEGEND — section dividers
   ────────────────────────────────────────── */
.submit-fieldset[b-unysbcvqec] {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.submit-fieldset:last-of-type[b-unysbcvqec] {
    margin-bottom: var(--space-6);
}

.submit-fieldset legend[b-unysbcvqec] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--accent-primary);
}

.submit-fieldset legend[b-unysbcvqec]::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--border-soft);
}

/* ──────────────────────────────────────────
   ④  FIELDS — labels, inputs, hints
   ────────────────────────────────────────── */
.field[b-unysbcvqec] {
    margin-bottom: var(--space-5);
}

.field:last-child[b-unysbcvqec] {
    margin-bottom: 0;
}

.field label[b-unysbcvqec] {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-heading);
}

.req[b-unysbcvqec] {
    margin-left: 4px;
    color: var(--accent-primary);
    font-size: 14px;
}

.opt[b-unysbcvqec] {
    margin-left: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

/* Input wells: use the page bg (slightly darker than the card) so the
   input sits VISIBLY recessed inside the bone-white card on cream. */
.field input[type="text"][b-unysbcvqec],
.field input[type="email"][b-unysbcvqec],
.field input[type="tel"][b-unysbcvqec],
.field input[type="url"][b-unysbcvqec],
.field textarea[b-unysbcvqec] {
    display: block;
    width: 100%;
    background-color: var(--surface-page-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.5;
    transition: border-color var(--duration-fast) var(--easing-standard),
                box-shadow var(--duration-medium) var(--easing-standard);
}

/* URL field gets mono treatment so it reads as an actual address */
.field input[type="url"][b-unysbcvqec] {
    font-family: var(--font-mono, monospace);
    font-size: 14px;
    letter-spacing: 0.02em;
}

.field input:focus-visible[b-unysbcvqec],
.field textarea:focus-visible[b-unysbcvqec] {
    outline: none;
    border-color: var(--border-strong);
    box-shadow: 0 0 0 2px var(--surface-card-bg),
                0 0 0 4px var(--focus-ring);
}

.field textarea[b-unysbcvqec] {
    resize: vertical;
    min-height: 100px;
}

.field-hint[b-unysbcvqec] {
    margin-top: var(--space-2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────
   ⑤  LOGO UPLOAD ZONE — compact (secondary to URL)
   ────────────────────────────────────────── */
.upload-zone[b-unysbcvqec] {
    position: relative;
    border: 2px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-5);
    text-align: center;
    cursor: pointer;
    transition: border-color var(--duration-medium) var(--easing-standard),
                background-color var(--duration-medium) var(--easing-standard);
}

.upload-zone:hover[b-unysbcvqec] {
    border-color: var(--accent-primary);
    background-color: rgba(200, 35, 27, 0.04);
}

.upload-zone input[type="file"][b-unysbcvqec] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-unysbcvqec] {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-heading);
    margin: 0 0 var(--space-2);
}

.upload-cta span[b-unysbcvqec] {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.upload-hint[b-unysbcvqec] {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────
   ⑥  HONEYPOT — offscreen, NOT display:none
   (display:none excludes from form submission;
    we need it submitted-but-empty by humans).
   ────────────────────────────────────────── */
.honeypot[b-unysbcvqec] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────
   ⑦  SUBMIT BUTTON — hot-rod red primary CTA
   ────────────────────────────────────────── */
.submit-actions[b-unysbcvqec] {
    margin-top: var(--space-8);
    text-align: center;
}

.btn-submit[b-unysbcvqec] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--cta-text);
    background-color: var(--cta-bg);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.btn-submit:hover[b-unysbcvqec] {
    background-color: var(--cta-bg-hover);
    transform: translateY(-1px);
}

.btn-submit:active[b-unysbcvqec] {
    background-color: var(--accent-primary-deep);
    transform: translateY(0);
}

.btn-submit:focus-visible[b-unysbcvqec] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

/* ──────────────────────────────────────────
   ⑧  RESPONSIVE — stack on narrow viewports
   ────────────────────────────────────────── */
@media (max-width: 768px) {
    .submit-card[b-unysbcvqec] {
        padding: var(--space-6) var(--space-5) var(--space-6);
    }

    .upload-zone[b-unysbcvqec] {
        padding: var(--space-5) var(--space-4);
    }
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-unysbcvqec] {
    border-color: var(--accent-primary, #c0392b);
    background: var(--surface-card-bg, #ffffff);
}
.upload-zone.is-selected[b-unysbcvqec] {
    border-style: solid;
    border-color: var(--accent-primary, #c0392b);
}
.upload-zone.is-selected .upload-cta[b-unysbcvqec] {
    color: var(--accent-primary, #c0392b);
}
/* /Components/Pages/SubmitSisterClubConfirmation.razor.rz.scp.css */
/* =====================================================================
   Submit Sister Club Confirmation page — title-band + cream-pearl card
   (Plan 09-02)
   ---------------------------------------------------------------------
   Mirrors SubmitPhotoConfirmation.razor.css and SubmitEventConfirmation
   .razor.css for visual cohesion across all moderated-submission
   confirmation flows (events, photos, sister clubs).

   V1.3 follow-up: migrated to semantic tokens. Header stays a dark
   island (--surface-inverse-bg) — it IS this page's hero. Body band
   flips to the cream page surface; card flips to bone-white.
   ===================================================================== */

.confirm-header[b-8twymm4zdl] {
    background-color: var(--surface-inverse-bg);
    padding: var(--space-12) var(--space-6);
    text-align: center;
}

.confirm-header-inner[b-8twymm4zdl] {
    max-width: 900px;
    margin: 0 auto;
}

.confirm-header-inner h1[b-8twymm4zdl] {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--accent-primary);
    margin: 0;
}

.confirm-rule[b-8twymm4zdl] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-primary);
    border: none;
    margin: var(--space-6) auto 0;
}

.confirm-body[b-8twymm4zdl] {
    background-color: var(--surface-page-bg);
    padding: var(--space-12) var(--space-6) var(--space-20);
}

.confirm-card[b-8twymm4zdl] {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.60),
                inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.confirm-card h2[b-8twymm4zdl] {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    color: var(--accent-primary);
    margin: 0 0 var(--space-4);
}

.confirm-card p[b-8twymm4zdl] {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0 0 var(--space-8);
}

.confirm-back-link[b-8twymm4zdl] {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--accent-primary);
    background-color: var(--surface-card-bg);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.confirm-back-link:hover[b-8twymm4zdl] {
    background-color: var(--cta-bg);
    color: var(--cta-text);
}

.confirm-back-link:focus-visible[b-8twymm4zdl] {
    outline: none;
    box-shadow: 0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

@media (max-width: 768px) {
    .confirm-card[b-8twymm4zdl] {
        padding: var(--space-8) var(--space-5);
    }
}
/* /Components/Shared/EventsNext7Days.razor.rz.scp.css */
/* =====================================================================
   EventsNext7Days — F14 Plan 14-02.
   ZERO raw var(--color-*) refs — semantic tokens only.
   ===================================================================== */

.feed[b-5lcbdc12nr] {
    background-color: var(--surface-page-bg);
    padding: var(--space-10) var(--space-6);
}

.feed-heading-rail[b-5lcbdc12nr] {
    max-width: 1100px;
    margin: 0 auto 28px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-on-dark);
}

.feed-heading[b-5lcbdc12nr] {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-heading);
    margin: 0;
}

.feed-submit-chip[b-5lcbdc12nr] {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: transparent;
    border: 1px solid var(--accent-primary);
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.feed-submit-chip:hover[b-5lcbdc12nr] {
    background-color: var(--accent-primary);
    color: var(--cta-text);
}

.feed-empty[b-5lcbdc12nr] {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--surface-card-bg);
    border: 1px dashed var(--border-on-dark);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    color: var(--text-muted);
}

.feed-empty a[b-5lcbdc12nr] {
    color: var(--link-on-dark);
    text-decoration: underline;
}

.feed-list[b-5lcbdc12nr] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: grid;
    gap: var(--space-3);
}

.feed-row[b-5lcbdc12nr] {
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.feed-row:hover[b-5lcbdc12nr] {
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

.feed-row-link[b-5lcbdc12nr] {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-4);
    align-items: center;
    padding: var(--space-3);
    text-decoration: none;
    color: inherit;
}

.feed-row-thumb[b-5lcbdc12nr] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background-color: var(--surface-elevated-bg);
}

.feed-row-body[b-5lcbdc12nr] {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    min-width: 0;
}

.feed-row-title[b-5lcbdc12nr] {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feed-row-meta-line[b-5lcbdc12nr] {
    display: flex;
    gap: var(--space-2);
    align-items: baseline;
    flex-wrap: wrap;
}

.feed-row-meta[b-5lcbdc12nr] {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
}

.feed-row-meta-sep[b-5lcbdc12nr] {
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 599px) {
    .feed-row-link[b-5lcbdc12nr] {
        grid-template-columns: 60px 1fr;
    }
    .feed-row-thumb[b-5lcbdc12nr] {
        width: 60px;
        height: 60px;
    }
}
/* /Components/Shared/FooterSisterClubCluster.razor.rz.scp.css */
/* =====================================================================
   FooterSisterClubCluster — F16 Plan 16-02 (TD-034 fold).
   ZERO raw var(--color-*) refs — semantic tokens only.

   Compact alphabetical link list mounted as a column inside
   .footer-extras. The cluster inherits .footer-label and .footer-link
   styling from MainLayout.razor.css; this file adds only the list shape.
   ===================================================================== */

.footer-sister-clubs[b-jo1ezqc40r] {
    /* Matches the .footer-donation / .footer-sponsor column shape — a
       vertical stack inside the .footer-extras grid cell. */
}

.footer-sister-clubs-list[b-jo1ezqc40r] {
    list-style: none;
    padding: 0;
    margin: var(--space-3) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-sister-club-link[b-jo1ezqc40r] {
    font-family: var(--font-body);
    font-size: 14px;
    text-decoration: none;
    /* Color + hover delegated to .footer-link from MainLayout.razor.css */
}
/* /Components/Shared/HeroBand.razor.rz.scp.css */
/* =====================================================================
   HeroBand — canonical hero band CSS (F14 Plan 14-01)
   ---------------------------------------------------------------------
   ZERO raw var(--color-*) references — semantic tokens only. This is the
   dogfooded reference for "what a semantic-only component CSS looks like".
   ===================================================================== */

.hero-band[b-f3ykdunw04] {
    background-color: var(--hero-band-bg);
    padding: var(--space-16) var(--space-6);
    text-align: center;
}

.hero-band-inner[b-f3ykdunw04] {
    max-width: 1320px;
    margin: 0 auto;
}

.hero-band-eyebrow[b-f3ykdunw04] {
    display: block;
    font-family: var(--font-display);
    color: var(--hero-band-eyebrow-fg);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.hero-band-title[b-f3ykdunw04] {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: var(--tracking-tight);
    line-height: 1.0;
    color: var(--hero-band-title-fg);
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
    margin: 0;
}

.hero-band-rule[b-f3ykdunw04] {
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--hero-band-rule-fg);
    border: none;
    border-radius: 0;
    margin: var(--space-6) auto 0;
}

.hero-band-subtitle[b-f3ykdunw04] {
    font-family: var(--font-body);
    color: var(--hero-band-subtitle-fg);
    max-width: 720px;
    margin: var(--space-6) auto 0;
    font-size: 17px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .hero-band[b-f3ykdunw04] {
        padding: var(--space-12) var(--space-4);
    }
    .hero-band-title[b-f3ykdunw04] {
        font-size: clamp(32px, 9vw, 44px);
    }
}
/* /Components/Shared/RecentPhotosStrip.razor.rz.scp.css */
/* =====================================================================
   RecentPhotosStrip — F16 Plan 16-01 (TD-034 fold).
   ZERO raw var(--color-*) refs — semantic tokens only.

   Compact horizontal strip rendering 6 most-recent Published photos on
   Home. Replaces the retired /gallery page; mounts between the Welcome
   card and EventsNext7Days feed.
   ===================================================================== */

.recent-photos-strip[b-rik8t0ymrj] {
    background-color: var(--surface-page-bg);
    padding: var(--space-10) var(--space-6);
}

.recent-photos-strip-header[b-rik8t0ymrj] {
    max-width: 1100px;
    margin: 0 auto 28px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-on-dark);
}

.recent-photos-strip-heading[b-rik8t0ymrj] {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-heading);
    margin: 0;
}

.recent-photos-strip-submit[b-rik8t0ymrj] {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 120ms ease-in;
}

.recent-photos-strip-submit:hover[b-rik8t0ymrj],
.recent-photos-strip-submit:focus-visible[b-rik8t0ymrj] {
    border-bottom-color: var(--accent-primary);
}

.recent-photos-strip-empty[b-rik8t0ymrj] {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--text-muted);
    font-style: italic;
}

.recent-photos-strip-empty a[b-rik8t0ymrj] {
    color: var(--accent-primary);
    text-decoration: underline;
}

.recent-photos-strip-list[b-rik8t0ymrj] {
    max-width: 1100px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-4);
}

.recent-photos-strip-item[b-rik8t0ymrj] {
    margin: 0;
}

.recent-photos-strip-tile[b-rik8t0ymrj] {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-soft);
    background-color: var(--surface-card-bg);
    transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.recent-photos-strip-tile:hover[b-rik8t0ymrj],
.recent-photos-strip-tile:focus-visible[b-rik8t0ymrj] {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    outline: none;
}

.recent-photos-strip-tile img[b-rik8t0ymrj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tablet — 3 per row */
@media (max-width: 1023px) {
    .recent-photos-strip-list[b-rik8t0ymrj] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile — 2 per row */
@media (max-width: 639px) {
    .recent-photos-strip-list[b-rik8t0ymrj] {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* /Components/Shared/StatePicker.razor.rz.scp.css */
/* Plan 15-02 — StatePicker scoped styles. Uses semantic admin tokens only —
   no raw --color-* references. Inherits sizing from the surrounding .field
   so it visually matches sibling <input> elements in the same field-row. */

select[b-61i2h1r2yu] {
    width: 100%;
    padding: var(--space-2, 0.5rem) var(--space-3, 0.75rem);
    border: 1px solid var(--admin-input-border, #c8c8c8);
    border-radius: var(--admin-input-radius, 4px);
    background-color: var(--admin-input-bg, #ffffff);
    color: var(--admin-input-fg, #1a1a1a);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    cursor: pointer;
    transition: border-color 120ms ease-in-out, box-shadow 120ms ease-in-out;
}

select:focus-visible[b-61i2h1r2yu] {
    outline: none;
    border-color: var(--admin-input-border-focus, #b4232c);
    box-shadow: 0 0 0 3px var(--admin-input-focus-ring, rgba(180, 35, 44, 0.25));
}

select:disabled[b-61i2h1r2yu] {
    opacity: 0.6;
    cursor: not-allowed;
}
/* /Components/Shared/SubmitCruiseForm.razor.rz.scp.css */
/* =====================================================================
   SubmitCruiseForm — F14 Plan 14-03 extracted component CSS.
   ---------------------------------------------------------------------
   Ported from the legacy Pages/SubmitCruise.razor.css with every raw
   var(--color-*) reference migrated to the F14 semantic layer. The
   selectors are identical (the form-card / fieldset / field / radio-
   group / honeypot / btn-submit pattern is preserved); only the token
   names changed.

   ZERO raw var(--color-*) refs. Two RGBA literals (focus halo offsets,
   error background overlay) preserved — alpha overlays, captured in
   TD-035 for future alpha-token consideration.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  CARD BODY
   ────────────────────────────────────────── */
.submit-card[b-9998vjvtcw] {
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
}

.submit-success[b-9998vjvtcw] {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-heading);
    text-align: center;
    padding: var(--space-8) 0;
}

.submit-errors[b-9998vjvtcw] {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background-color: rgba(200, 35, 27, 0.08);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.5;
}

.submit-errors li[b-9998vjvtcw] { margin: 0; }
.submit-errors li + li[b-9998vjvtcw] { margin-top: var(--space-2); }

/* ──────────────────────────────────────────
   ②  FIELDSET + LEGEND
   ────────────────────────────────────────── */
.submit-fieldset[b-9998vjvtcw] {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.submit-fieldset:last-of-type[b-9998vjvtcw] {
    margin-bottom: var(--space-6);
}

.submit-fieldset legend[b-9998vjvtcw] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--accent-primary);
}

.submit-fieldset legend[b-9998vjvtcw]::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--border-on-dark);
}

/* ──────────────────────────────────────────
   ③  FIELDS
   ────────────────────────────────────────── */
.field[b-9998vjvtcw] {
    margin-bottom: var(--space-5);
}

.field:last-child[b-9998vjvtcw] { margin-bottom: 0; }

.field label[b-9998vjvtcw] {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-heading);
}

.req[b-9998vjvtcw] {
    margin-left: 4px;
    color: var(--accent-primary);
    font-size: 14px;
}

.opt[b-9998vjvtcw] {
    margin-left: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.field input[type="text"][b-9998vjvtcw],
.field input[type="email"][b-9998vjvtcw],
.field input[type="tel"][b-9998vjvtcw],
.field input[type="time"][b-9998vjvtcw],
.field textarea[b-9998vjvtcw],
.field select[b-9998vjvtcw] {
    display: block;
    width: 100%;
    background-color: var(--surface-page-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.5;
    transition: border-color var(--duration-fast) var(--easing-standard),
                box-shadow var(--duration-medium) var(--easing-standard);
}

.field input:focus-visible[b-9998vjvtcw],
.field textarea:focus-visible[b-9998vjvtcw],
.field select:focus-visible[b-9998vjvtcw] {
    outline: none;
    border-color: var(--border-strong);
    box-shadow: 0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

.field textarea[b-9998vjvtcw] {
    resize: vertical;
    min-height: 88px;
}

.field-hint[b-9998vjvtcw] {
    margin-top: var(--space-2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────
   ④  FIELD-ROW
   ────────────────────────────────────────── */
.field-row[b-9998vjvtcw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.field-row .field[b-9998vjvtcw] { margin-bottom: 0; }

/* ──────────────────────────────────────────
   ⑤  RADIO GROUP
   ────────────────────────────────────────── */
.radio-group[b-9998vjvtcw] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.radio-option[b-9998vjvtcw] {
    display: flex !important;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: 0 !important;
    padding: 10px 14px;
    background-color: var(--surface-page-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text-body);
    transition: border-color var(--duration-fast) var(--easing-standard),
                background-color var(--duration-fast) var(--easing-standard);
}

.radio-option:hover[b-9998vjvtcw] {
    border-color: var(--border-strong);
}

.radio-option input[type="radio"][b-9998vjvtcw] {
    accent-color: var(--accent-primary);
    margin: 0;
}

.radio-option span[b-9998vjvtcw] { user-select: none; }

/* ──────────────────────────────────────────
   ⑥  HONEYPOT
   ────────────────────────────────────────── */
.honeypot[b-9998vjvtcw] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────
   ⑦  SUBMIT BUTTON
   ────────────────────────────────────────── */
.submit-actions[b-9998vjvtcw] {
    margin-top: var(--space-8);
    text-align: center;
}

.btn-submit[b-9998vjvtcw] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--cta-text);
    background-color: var(--cta-bg);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.btn-submit:hover[b-9998vjvtcw] {
    background-color: var(--cta-bg-hover);
    transform: translateY(-1px);
}

.btn-submit:active[b-9998vjvtcw] {
    background-color: var(--accent-primary-deep);
    transform: translateY(0);
}

.btn-submit:focus-visible[b-9998vjvtcw] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

/* ──────────────────────────────────────────
   ⑧  RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 520px) {
    .field-row[b-9998vjvtcw] {
        grid-template-columns: 1fr;
    }

    .submit-card[b-9998vjvtcw] {
        padding: var(--space-6) var(--space-5) var(--space-6);
    }
}
/* /Components/Shared/SubmitEventForm.razor.rz.scp.css */
/* =====================================================================
   SubmitEventForm — F14 Plan 14-03 extracted component CSS.
   ---------------------------------------------------------------------
   Ported from the legacy Pages/SubmitEvent.razor.css with every raw
   var(--color-*) reference migrated to the F14 semantic layer.
   ZERO raw var(--color-*) refs.
   ===================================================================== */

/* ──────────────────────────────────────────
   ①  CARD BODY
   ────────────────────────────────────────── */
.submit-card[b-vwyt9zx63v] {
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
}

.submit-success[b-vwyt9zx63v] {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-heading);
    text-align: center;
    padding: var(--space-8) 0;
}

.submit-errors[b-vwyt9zx63v] {
    list-style: none;
    margin: 0 0 var(--space-6);
    padding: var(--space-4) var(--space-5);
    background-color: rgba(200, 35, 27, 0.08);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-sm);
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.5;
}

.submit-errors li[b-vwyt9zx63v] { margin: 0; }
.submit-errors li + li[b-vwyt9zx63v] { margin-top: var(--space-2); }

/* ──────────────────────────────────────────
   ②  FIELDSET + LEGEND
   ────────────────────────────────────────── */
.submit-fieldset[b-vwyt9zx63v] {
    border: none;
    padding: 0;
    margin: 0 0 var(--space-8);
}

.submit-fieldset:last-of-type[b-vwyt9zx63v] {
    margin-bottom: var(--space-6);
}

.submit-fieldset legend[b-vwyt9zx63v] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--accent-primary);
}

.submit-fieldset legend[b-vwyt9zx63v]::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: var(--border-on-dark);
}

/* ──────────────────────────────────────────
   ③  FIELDS
   ────────────────────────────────────────── */
.field[b-vwyt9zx63v] {
    margin-bottom: var(--space-5);
}

.field:last-child[b-vwyt9zx63v] { margin-bottom: 0; }

.field label[b-vwyt9zx63v] {
    display: block;
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-heading);
}

.req[b-vwyt9zx63v] {
    margin-left: 4px;
    color: var(--accent-primary);
    font-size: 14px;
}

.opt[b-vwyt9zx63v] {
    margin-left: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

.field input[type="text"][b-vwyt9zx63v],
.field input[type="email"][b-vwyt9zx63v],
.field input[type="tel"][b-vwyt9zx63v],
.field input[type="date"][b-vwyt9zx63v],
.field textarea[b-vwyt9zx63v] {
    display: block;
    width: 100%;
    background-color: var(--surface-page-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.5;
    transition: border-color var(--duration-fast) var(--easing-standard),
                box-shadow var(--duration-medium) var(--easing-standard);
}

.field input:focus-visible[b-vwyt9zx63v],
.field textarea:focus-visible[b-vwyt9zx63v] {
    outline: none;
    border-color: var(--border-strong);
    box-shadow: 0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

.field textarea[b-vwyt9zx63v] {
    resize: vertical;
    min-height: 96px;
}

.field-hint[b-vwyt9zx63v] {
    margin-top: var(--space-2);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────
   ④  UPLOAD ZONE
   ────────────────────────────────────────── */
.upload-zone[b-vwyt9zx63v] {
    position: relative;
    border: 2px dashed var(--border-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    cursor: pointer;
    transition: border-color var(--duration-medium) var(--easing-standard),
                background-color var(--duration-medium) var(--easing-standard);
}

.upload-zone:hover[b-vwyt9zx63v] {
    border-color: var(--accent-primary);
    background-color: rgba(200, 35, 27, 0.04);
}

.upload-zone input[type="file"][b-vwyt9zx63v] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-cta[b-vwyt9zx63v] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-heading);
    margin: 0 0 var(--space-2);
}

.upload-cta span[b-vwyt9zx63v] {
    color: var(--validation-error);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.upload-hint[b-vwyt9zx63v] {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────
   ⑤  HONEYPOT
   ────────────────────────────────────────── */
.honeypot[b-vwyt9zx63v] {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ──────────────────────────────────────────
   ⑥  SUBMIT BUTTON
   ────────────────────────────────────────── */
.submit-actions[b-vwyt9zx63v] {
    margin-top: var(--space-8);
    text-align: center;
}

.btn-submit[b-vwyt9zx63v] {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--cta-text);
    background-color: var(--cta-bg);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 14px 32px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background-color var(--duration-fast) var(--easing-standard),
                transform var(--duration-fast) var(--easing-standard);
}

.btn-submit:hover[b-vwyt9zx63v] {
    background-color: var(--cta-bg-hover);
    transform: translateY(-1px);
}

.btn-submit:active[b-vwyt9zx63v] {
    background-color: var(--accent-primary-deep);
    transform: translateY(0);
}

.btn-submit:focus-visible[b-vwyt9zx63v] {
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 2px var(--surface-page-bg),
                0 0 0 4px var(--focus-ring);
}

/* ──────────────────────────────────────────
   ⑦  RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 768px) {
    .submit-card[b-vwyt9zx63v] {
        padding: var(--space-6) var(--space-5) var(--space-6);
    }
    .upload-zone[b-vwyt9zx63v] {
        padding: var(--space-8) var(--space-4);
    }
}


/* Plan 15-05 — drag-drop + file-pick visual feedback. Semantic tokens only. */
.upload-zone.is-dragover[b-vwyt9zx63v] {
    border-color: var(--accent-primary, #c0392b);
    background: var(--surface-card-bg, #ffffff);
}
.upload-zone.is-selected[b-vwyt9zx63v] {
    border-style: solid;
    border-color: var(--accent-primary, #c0392b);
}
.upload-zone.is-selected .upload-cta[b-vwyt9zx63v] {
    color: var(--accent-primary, #c0392b);
}
/* /Components/Shared/WeeklySchedule.razor.rz.scp.css */
/* =====================================================================
   WeeklySchedule — V1.3 Item 2 extracted shared CSS.
   ---------------------------------------------------------------------
   Ported from the Cruises.razor.css weekly-schedule-* selectors (which
   were themselves migrated to semantic tokens in F14 Plan 14-04). This
   is now the single source of truth — the Cruises page and the Home
   page render identically via <WeeklySchedule />.

   ZERO raw var(--color-*) refs — semantic tokens only.
   ===================================================================== */

.weekly-schedule-section[b-azp3aq925z] {
    /* Full-width outer (matches .feed pattern in EventsNext7Days for
       column alignment between sections). Inner blocks center themselves
       via max-width + auto margins. */
    padding: 40px 24px;
}

.weekly-schedule-heading-rail[b-azp3aq925z] {
    max-width: 1100px;
    margin: 0 auto 28px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-on-dark);
}

.weekly-schedule-heading[b-azp3aq925z] {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--text-heading);
    margin: 0;
}

.section-header-logo[b-azp3aq925z] {
    display: block;
    width: 280px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 640px) {
    .section-header-logo[b-azp3aq925z] {
        width: 220px;
    }
}

.weekly-schedule-submit-chip[b-azp3aq925z] {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: transparent;
    border: 1px solid var(--accent-primary);
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color var(--duration-fast) var(--easing-standard),
                color var(--duration-fast) var(--easing-standard);
}

.weekly-schedule-submit-chip:hover[b-azp3aq925z] {
    background-color: var(--accent-primary);
    color: var(--cta-text);
}

.weekly-schedule-empty[b-azp3aq925z] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px;
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-body);
    background-color: var(--surface-card-bg);
    border: 1px dashed var(--border-on-dark);
    border-radius: var(--radius-sm);
}

.weekly-schedule-empty a[b-azp3aq925z] {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.weekly-schedule-empty a:hover[b-azp3aq925z] {
    border-bottom-color: var(--accent-primary);
}

.weekly-schedule-day-group[b-azp3aq925z] {
    max-width: 1100px;
    margin: 0 auto 28px;
}

.weekly-schedule-day-group:last-child[b-azp3aq925z] {
    margin-bottom: 0;
}

.weekly-schedule-day-heading[b-azp3aq925z] {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-heading);
    background-color: var(--surface-page-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    margin: 0 0 14px;
}

.weekly-schedule-list[b-azp3aq925z] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.weekly-schedule-row[b-azp3aq925z] {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 20px;
    padding: 16px 18px;
    background-color: var(--surface-card-bg);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    align-items: center;
}

.weekly-schedule-row:last-child[b-azp3aq925z] {
    margin-bottom: 0;
}

.weekly-schedule-time[b-azp3aq925z] {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: var(--accent-primary);
    white-space: nowrap;
}

.weekly-schedule-body[b-azp3aq925z] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.weekly-schedule-venue[b-azp3aq925z] {
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.3;
}

.weekly-schedule-venue .venue-name[b-azp3aq925z] {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 15px;
}

.weekly-schedule-venue .venue-location[b-azp3aq925z] {
    color: var(--text-muted);
    font-size: 13.5px;
}

/* V02 F03 plan 03-04 — explicit visible separator between LocationName and
   city/state tail. Replaces the pre-F03 reliance on margin-left between
   adjacent <span> elements (which produced "RiverFront ParkNiles, MI" with
   no visible character glyph between the spans). */
.weekly-schedule-venue .venue-separator[b-azp3aq925z] {
    color: var(--text-muted);
    font-size: 13.5px;
    margin: 0 6px;
}

.weekly-schedule-description[b-azp3aq925z] {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.weekly-schedule-notes[b-azp3aq925z] {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-style: italic;
    color: var(--text-muted);
    margin: 0;
}

.weekly-schedule-meta[b-azp3aq925z] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    text-align: right;
}

.weekly-schedule-pill[b-azp3aq925z] {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.weekly-schedule-pill--weekly[b-azp3aq925z] {
    background: rgba(192, 192, 192, 0.12);
    color: var(--text-heading);
    border: 1px solid var(--border-soft);
}

.weekly-schedule-pill--monthly[b-azp3aq925z] {
    background: rgba(204, 31, 26, 0.12);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.weekly-schedule-season[b-azp3aq925z] {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .weekly-schedule-row[b-azp3aq925z] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .weekly-schedule-meta[b-azp3aq925z] {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 10px;
    }
}
