/* Public /Status page — reuses landing.css's --bg/--text/--gold custom properties (loaded first),
   adds only what's specific to the uptime bars and incident feed. */

.status-public-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 1.25rem 5rem;
}

.status-public-head { margin-bottom: 2.5rem; }
.status-public-head h1 { font-size: 2rem; font-weight: 600; color: var(--text); margin: 0.4rem 0 1rem; }

.status-market-line {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.status-market-hint { color: var(--text-faint); font-size: 0.78rem; margin-left: 0.35rem; }

.status-banner {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.status-banner-green  { background: rgba(74, 222, 128, 0.14);  color: #4ade80; }
.status-banner-yellow { background: rgba(251, 191, 36, 0.14);  color: #fbbf24; }
.status-banner-red    { background: rgba(248, 113, 113, 0.16); color: #f87171; }

.status-legend {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(236, 226, 210, 0.12);
    padding-top: 1rem;
}
.status-legend-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 0.4rem;
}

.status-bars { margin-bottom: 2.5rem; }
.status-bar-block { margin-bottom: 1.75rem; }
.status-bar-title {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.status-bar-hint { font-weight: 400; color: var(--text-faint); font-size: 0.78rem; margin-left: 0.4rem; }

.status-tick-row {
    display: flex;
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 2px;
}
.status-tick {
    flex: 1 0 6px;
    min-width: 4px;
    height: 26px;
    border-radius: 2px;
}
.status-tick-green  { background: #4ade80; }
.status-tick-yellow { background: #fbbf24; }
.status-tick-red    { background: #f87171; }
.status-tick-none   { background: rgba(236, 226, 210, 0.10); }

.status-bar-foot {
    display: flex;
    justify-content: space-between;
    color: var(--text-faint);
    font-size: 0.75rem;
    margin-top: 0.35rem;
}

.status-incidents h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    border-top: 1px solid rgba(236, 226, 210, 0.12);
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}
.status-no-incidents { color: var(--text-faint); font-size: 0.9rem; }

.status-incident-day { margin-bottom: 1.5rem; }
.status-incident-date {
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid rgba(236, 226, 210, 0.12);
    padding-bottom: 0.4rem;
    margin-bottom: 0.6rem;
}
.status-incident-entry { margin-bottom: 0.75rem; font-size: 0.9rem; }
.status-incident-red    { color: #f87171; font-weight: 600; }
.status-incident-yellow { color: #fbbf24; font-weight: 600; }
.status-incident-resolved,
.status-incident-ongoing {
    color: var(--text-faint);
    font-size: 0.8rem;
    margin-top: 0.15rem;
}
.status-incident-ongoing { color: #f87171; }
