/* ================================================================
   ORKOS.FR — Design System v4
   ================================================================ */

:root {
    --bg:            #1e1e22;
    --bg-soft:       #242428;
    --bg-card:       #28282e;
    --bg-card-hover: #2e2e36;
    --border:        #36363e;
    --border-strong: #484852;
    --border-bright: #62626e;

    --text-bright:   #ffffff;
    --text:          #eaeaee;
    --text-soft:     #b4b4ba;
    --text-dim:      #7a7a82;
    --text-muted:    #525258;

    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --header-h:  58px;
    --subnav-w:  180px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Gradient gris par onglet (du + foncé au + clair) */
    --tab-1: #6e6e78;   /* Création */
    --tab-2: #868690;   /* Jeu de rôle */
    --tab-3: #9e9ea8;   /* Pro */
    --tab-4: #b6b6be;   /* Codex */

    --bg-main: #2c2c32; /* Fond zone principale (légèrement plus clair que bg-soft) */
}

/* ---- Mode Jour ---- */
html.light {
    --bg:            #f0f0f4;
    --bg-soft:       #e8e8ec;
    --bg-card:       #ffffff;
    --bg-card-hover: #f4f4f8;
    --border:        #d4d4da;
    --border-strong: #b8b8c0;
    --border-bright: #9898a2;

    --text-bright:   #0f0f12;
    --text:          #1e1e24;
    --text-soft:     #3c3c44;
    --text-dim:      #606068;
    --text-muted:    #88888f;

    --bg-main: #eaeaee;
}

/* ---- Transition jour / nuit ---- */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
    transition:
        color            0.3s ease,
        background-color 0.3s ease,
        border-color     0.3s ease,
        box-shadow       0.3s ease,
        fill             0.3s ease,
        stroke           0.3s ease !important;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; height: 100%; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}
/* Lightbox active — verrouille le scroll (appliqué via classList, pas style inline) */
body.gallery-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ================================================================
   HEADER
   ================================================================ */

.site-header {
    flex-shrink: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(30,30,34,0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 0;
}

/* Brand Orkos */
.brand {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-bright);
    flex-shrink: 0;
    transition: opacity var(--transition);
}
.brand:hover { opacity: 0.7; }

/* ---- Onglets (page accueil) ---- */
.main-tabs {
    display: flex;
    align-items: center;
    margin-left: 28px;
    gap: 2px;
}

.main-tabs a {
    padding: 6px 14px;
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--text-bright);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.main-tabs a:hover { background: rgba(255,255,255,0.06); }

/* ---- Header droite : connexion / session ---- */
.header-login {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 5px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.header-login:hover { color: var(--text-soft); border-color: var(--border-strong); }

/* Anti-flash : masquer le lien statique si l'utilisateur est connecté (cookie orkos_ui présent)
   → main.js le remplacera par .header-user sans blink visible */
html.has-user .header-login { visibility: hidden; pointer-events: none; }

.header-user {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-soft);
    white-space: nowrap;
}

.header-user-name {
    color: var(--text-soft);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}
.header-user-name:hover { color: var(--text-bright); }

.header-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-soft);
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    padding: 2px 9px;
}

.header-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--border-strong);
    display: block;
    flex-shrink: 0;
}

/* ---- Menu déroulant header ---- */
.header-menu-wrap {
    margin-left: 12px;
    position: relative;
    flex-shrink: 0;
}

.header-menu-btn {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}
.header-menu-btn:hover { color: var(--text-soft); border-color: var(--border-strong); }

.header-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    padding: 5px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.header-menu-wrap.is-open .header-dropdown { display: flex; }

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    padding: 9px 11px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-soft);
    transition: background var(--transition), color var(--transition);
}
.dropdown-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border-radius: 50%;
}
.dropdown-item:hover { background: rgba(255,255,255,0.06); color: var(--text-bright); }

/* ---- Indicateur de section (pages section) ---- */
.section-indicator {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: 14px;
}

.has-section .section-indicator { display: flex; }

.section-sep {
    color: var(--border-bright);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1;
}

.section-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-bright);
    line-height: 1;
    transition: opacity var(--transition);
}
a.section-name:hover { opacity: 0.65; }

/* ---- Bouton jour/nuit ---- */
.theme-toggle {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: 18px;
}

/* Icônes lune / soleil flanquant le slider */
.tt-icon {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: color var(--transition), opacity var(--transition);
    opacity: 0.45;
    flex-shrink: 0;
}
/* Lune active en mode nuit, soleil actif en mode jour */
html:not(.light) .tt-moon { color: var(--text-soft); opacity: 1; }
html.light       .tt-sun  { color: #c88800;           opacity: 1; }

.tt-btn {
    position: relative;
    width: 42px;
    height: 24px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 3px;
    transition: background var(--transition), border-color var(--transition);
}
.tt-btn:hover { border-color: var(--border-bright); }

.tt-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-dim);
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

html.light .tt-btn {
    background: #ede8d0;
    border-color: #c8b880;
}
html.light .tt-thumb {
    transform: translateX(18px);
    background: #d4900a;
}

/* ---- Surcharges mode jour (header, dropdown) ---- */
html.light .site-header {
    background: rgba(240,240,244,0.94);
    border-bottom-color: var(--border);
}
html.light .header-dropdown {
    background: var(--bg-card);
    border-color: var(--border-strong);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
html.light .subnav-item.is-active {
    background: rgba(0,0,0,0.07);
}

/* ================================================================
   PAGE BODY (sous le header)
   ================================================================ */

.page-body {
    flex: 1;
    display: flex;
    flex-direction: row;
    min-height: 0;
    overflow: hidden;
}

/* ================================================================
   SOUS-NAV GAUCHE (catégories de section)
   ================================================================ */

.section-subnav {
    width: var(--subnav-w);
    min-width: var(--subnav-w);
    border-right: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex-shrink: 0;
}

.subnav-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 9px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    border-left: 2px solid transparent;
    line-height: 1.4;
    transition: color var(--transition), border-color var(--transition), background var(--transition), font-size var(--transition), font-weight var(--transition);
}
.subnav-item:hover { color: var(--text-soft); background: rgba(255,255,255,0.05); }
.subnav-item.is-active {
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--text-bright);
    border-left-color: var(--text-bright);
    background: rgba(255,255,255,0.13);
}

/* ================================================================
   SIDEBAR ADMIN (override subnav pour le panel admin)
   ================================================================ */

.admin-sidebar {
    width: 214px;
    min-width: 214px;
    padding: 12px 0 24px;
    gap: 0;
}

.sidebar-group {
    margin-bottom: 4px;
}

.sidebar-group-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 14px 16px 5px;
    display: block;
}

.sidebar-group:first-child .sidebar-group-label {
    padding-top: 4px;
}

.admin-sidebar .subnav-item {
    font-size: 0.845rem;
    padding: 7px 16px;
}

/* ================================================================
   CONTENU PRINCIPAL
   ================================================================ */

.site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-y: auto;
    background: var(--bg-main);
}

/* Home */
.home-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 64px 64px;
}

.intro { max-width: 680px; }

.intro-greeting {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text-bright);
    margin-bottom: 32px;
}

.intro p {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--text-soft);
    margin-bottom: 16px;
    line-height: 1.7;
}

.intro p:last-child {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 32px;
    margin-bottom: 0;
}

/* Section content */
.section-content {
    flex: 1;
    padding: 64px 56px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ================================================================
   LANDING CATÉGORIE
   ================================================================ */

.cat-landing { max-width: 560px; margin: 0 auto; }

.cat-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cat-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-bright);
    margin-bottom: 16px;
}

.cat-desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
}
.cat-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
}

/* ================================================================
   GALERIE
   ================================================================ */

.section-content.is-gallery {
    justify-content: flex-start;
    padding-top: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 32px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    transition: border-color var(--transition), transform var(--transition);
}
.gallery-thumb:hover {
    border-color: var(--border-bright);
    transform: scale(1.02);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-title {
    font-size: 0.85rem;
    color: var(--text-soft);
    text-align: center;
    line-height: 1.4;
}

.gallery-empty {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 48px 0;
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}
.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    display: block;
}
.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    color: var(--text-bright);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}
.lb-close:hover { background: var(--bg-card-hover); border-color: var(--border-bright); }
.lb-title {
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-soft);
    text-align: center;
}

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
    flex-shrink: 0;
    border-top: 1px solid var(--border);
    padding: 16px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.footer-version {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-dim);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 2px 9px;
    letter-spacing: 0.04em;
    transition: color var(--transition), border-color var(--transition);
}
.footer-version:hover { color: var(--text-soft); border-color: var(--border-strong); }

.footer-right {
    font-size: 0.78rem;
    color: var(--text-dim);
    transition: color var(--transition);
}
.footer-right:hover { color: var(--text-soft); }

/* ================================================================
   COMPTE (section profil utilisateur)
   ================================================================ */

.compte-wrap { flex: 1; padding: 48px 56px; min-width: 0; overflow-y: auto; }

/* Héro identité */
.compte-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 700; color: var(--text-bright);
    flex-shrink: 0; letter-spacing: -0.02em;
}
.compte-name {
    font-size: 1.6rem; font-weight: 700;
    letter-spacing: -0.03em; color: var(--text-bright); line-height: 1.1;
}
.compte-meta { display: flex; gap: 8px; align-items: center; margin-top: 5px; }
.compte-id   { font-size: 0.78rem; color: var(--text-dim); font-family: monospace; }

.compte-role-badge {
    display: inline-block; padding: 2px 9px; border-radius: 999px;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
}
.badge-admin      { background: rgba(160,80,255,0.15); color: #c080ff; border: 1px solid rgba(160,80,255,0.3); }
.badge-famille    { background: rgba(255,160,80,0.15);  color: #ffb060; border: 1px solid rgba(255,160,80,0.3); }
.badge-ami        { background: rgba(100,140,255,0.15); color: #8aaaff; border: 1px solid rgba(100,140,255,0.3); }
.badge-utilisateur{ background: rgba(80,200,180,0.12);  color: #60c8b4; border: 1px solid rgba(80,200,180,0.3); }

/* Formulaires */
.compte-form { max-width: 540px; }

.form-section-title {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.09em; color: var(--text-dim);
    margin: 28px 0 16px; padding-top: 24px;
    border-top: 1px solid var(--border);
}
.form-section-title:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-full  { grid-column: 1 / -1; }

.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-field label {
    font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-muted);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
    background: var(--bg); border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm); padding: 9px 12px;
    font: inherit; font-size: 0.9rem; color: var(--text-bright);
    outline: none; transition: border-color var(--transition); width: 100%;
}
.cf-field textarea { resize: vertical; min-height: 80px; line-height: 1.55; }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--border-bright); }
.cf-hint { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

.cf-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.cf-radio-label {
    display: flex; align-items: center; gap: 7px; padding: 8px 14px;
    background: var(--bg); border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-size: 0.875rem; color: var(--text-soft);
    cursor: pointer; transition: border-color var(--transition), color var(--transition);
    user-select: none;
}
.cf-radio-label input { width: auto; accent-color: var(--text-bright); }
.cf-radio-label:has(input:checked) { border-color: var(--border-bright); color: var(--text-bright); }
.cf-disabled { opacity: 0.45; pointer-events: none; }

.cf-save {
    margin-top: 28px; padding: 10px 28px;
    background: var(--text-bright); color: var(--bg);
    border: none; border-radius: var(--radius-sm);
    font: inherit; font-size: 0.9rem; font-weight: 700;
    cursor: pointer; transition: opacity var(--transition);
}
.cf-save:hover { opacity: 0.85; }

.msg-ok  { padding: 10px 14px; background: rgba(80,200,120,0.1);  border: 1px solid rgba(80,200,120,0.3);  border-radius: var(--radius-sm); color: #6dcc8a; font-size: 0.875rem; margin-bottom: 24px; }
.msg-err { padding: 10px 14px; background: rgba(255,80,80,0.1);   border: 1px solid rgba(255,80,80,0.3);   border-radius: var(--radius-sm); color: #ff8080; font-size: 0.875rem; margin-bottom: 24px; }

/* ================================================================
   MOBILE
   ================================================================ */

@media (max-width: 719px) {
    .home-content { padding: 40px 24px; }

    .section-subnav {
        width: 140px;
        min-width: 140px;
        padding: 16px 0;
    }

    .subnav-item { padding: 9px 12px; font-size: 0.82rem; }

    .section-content { padding: 32px 24px; }
    .site-footer { padding: 14px 24px; }
    .section-name { font-size: 1.2rem; }

    .compte-wrap { padding: 32px 24px; }
    .cf-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   A11Y
   ================================================================ */

:focus-visible {
    outline: 2px solid var(--text-bright);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ---- Utilities ---------------------------------------------------------------- */
.u-ml-auto        { margin-left: auto; }
.u-d-none         { display: none; }
.u-d-inline       { display: inline; }
.u-d-flex         { display: flex; }
.u-w-full         { width: 100%; }
.u-fw-600         { font-weight: 600; }
.u-fw-700         { font-weight: 700; }
.u-fw-800         { font-weight: 800; }
.u-text-bright    { color: var(--text-bright); }
.u-text-muted     { color: var(--text-muted); }
.u-text-soft      { color: var(--text-soft); }
.u-text-dim       { color: var(--text-dim); }
.u-fs-65          { font-size: .65rem; }
.u-fs-72          { font-size: .72rem; }
.u-fs-75          { font-size: .75rem; }
.u-fs-80          { font-size: .8rem; }
.u-fs-85          { font-size: .85rem; }
.u-mw-540         { max-width: 540px; }
.u-mw-900         { max-width: 900px; }
.u-mt-6           { margin-top: 6px; }
.u-mt-10          { margin-top: 10px; }
.u-mt-16          { margin-top: 16px; }
.u-mt-20          { margin-top: 20px; }
.u-mt-28          { margin-top: 28px; }
.u-mb-8           { margin-bottom: 8px; }
.u-mb-16          { margin-bottom: 16px; }
.u-mb-36          { margin-bottom: 36px; }
.u-mb-48          { margin-bottom: 48px; }
.u-m-0            { margin: 0; }
.u-min-h-screen   { min-height: 100vh; }
.u-profit-pos     { color: #4caf50; }
.u-profit-neg     { color: #ef5350; }
.u-d-none-margin  { display: none; margin: 12px 0; }
.u-fs-82          { font-size: .82rem; }
.u-fs-7           { font-size: .7rem; }
.u-fs-130         { font-size: 1.3rem; }
.u-ws-nowrap      { white-space: nowrap; }
.u-font-mono      { font-family: monospace; }
.u-sep-slash      { opacity: .4; margin: 0 3px; }
.u-color-gray     { color: #9ca3af; }
.u-lh-170         { line-height: 1.7; }
.u-fs-875         { font-size: 0.875rem; }
.u-form-hint      { font-size: .82rem; color: var(--text-muted); margin-bottom: 20px; max-width: 480px; line-height: 1.6; }
.u-form-hint-sm   { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.u-mb-16-mw-360   { margin-bottom: 16px; max-width: 360px; }
.u-cursor-pointer { cursor: pointer; }
.u-mt-8           { margin-top: 8px; }
.u-tag-coming     { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0; text-transform: none; margin-left: 6px; }
