/* Japan Earnings Insights — Bloomberg-style dark theme */

/* ── Self-hosted Fonts ──────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #1a1a1a;
  --bg-card-hover: #222222;
  --bg-header:     #000000;
  --border:        #2a2a2a;
  --border-accent: #333333;

  --text-primary:  #e8e8e8;
  --text-secondary:#a0a0a0;
  --text-muted:    #666666;
  --text-inverse:  #000000;

  --accent:        #ff6600;      /* Bloomberg orange */
  --accent-hover:  #ff8833;
  --accent-green:  #00c851;
  --accent-red:    #ff3b30;
  --accent-blue:   #0066cc;
  --accent-yellow: #ffcc00;

  --font-sans:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;
  --font-serif:    Georgia, 'Times New Roman', serif;

  --radius:        2px;
  --shadow:        0 2px 8px rgba(0,0,0,0.6);
  --max-width:     1200px;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  background: var(--bg-header);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.site-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}
.site-logo .logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}
.site-logo .logo-badge {
  font-size: 10px;
  background: var(--accent);
  color: #000;
  padding: 1px 5px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.site-nav a {
  color: var(--text-secondary);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
  font-weight: 500;
}
.site-nav a:hover { color: #fff; background: var(--bg-card); }
.site-nav a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* ── Ticker Tape ─────────────────────────────────────── */
.ticker-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  overflow: hidden;
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}
.ticker-bar .ticker-inner {
  display: inline-block;
  animation: ticker-scroll 40s linear infinite;
  padding-left: 100%;
}
.ticker-bar .ticker-inner:hover { animation-play-state: paused; }
.ticker-item { display: inline-block; margin: 0 24px; }
.ticker-item .up   { color: var(--accent-green); }
.ticker-item .down { color: var(--accent-red); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Layout ──────────────────────────────────────────── */
.page-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}
.page-wrapper.full-width {
  grid-template-columns: 1fr;
  max-width: 860px;
}
main { min-width: 0; }
aside { min-width: 0; }

/* ── Section Headers ─────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

/* ── News Section Box ────────────────────────────────── */
.news-section-box {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}
.news-section-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  background: #0d0d0d;
}
.news-ticker-list { display: flex; flex-direction: column; }
.news-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  transition: background 0.1s;
}
.news-ticker-item:last-child { border-bottom: none; }
.news-ticker-item:hover { background: var(--bg-card-hover); }
.news-ticker-item a {
  color: var(--text-primary);
  text-decoration: none;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-ticker-item a:hover { color: var(--accent); }
.news-ticker-item .news-date {
  color: var(--text-muted);
  font-size: 11px;
  flex-shrink: 0;
  font-family: var(--font-mono, monospace);
}
.sentiment {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sentiment.pos { background: #0a2a0a; color: #4dcc4d; border: 1px solid #1a5a1a; }
.sentiment.neg { background: #2a0a0a; color: #cc4444; border: 1px solid #5a1a1a; }
.sentiment.neu { background: #1a1a1a; color: #888;    border: 1px solid #333; }

/* ── Company Profiles Section ────────────────────────── */
.company-profiles-section {
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  padding: 2rem 0 2.5rem;
}
.company-profiles-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Company Grid ────────────────────────────────────── */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.company-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.company-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.company-card-ticker {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono, monospace);
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.company-card-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.company-card-date {
  font-size: 10px;
  color: var(--text-muted);
}

/* ── Article Cards ───────────────────────────────────── */
.article-list { display: flex; flex-direction: column; gap: 0; }
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom: none;
  padding: 16px 20px;
  transition: background 0.15s;
  position: relative;
}
.article-card:last-child { border-bottom: 1px solid var(--border); }
.article-card:hover { background: var(--bg-card-hover); }
.article-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.15s;
}
.article-card:hover::before { background: var(--accent); }

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.card-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
}
.card-date {
  font-size: 11px;
  color: var(--text-muted);
}
.card-market {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.card-market.prime    { background: #1a2f4a; color: #4da6ff; }
.card-market.standard { background: #1a3a1a; color: #4dcc4d; }

.ticker-badge {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: #1a1a0a;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--font-mono, monospace);
}
.company-profile-link {
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 2px;
  font-weight: 600;
  color: #94a3b8;
  border: 1px solid #334155;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}
.company-profile-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--accent); text-decoration: none; }

.card-summary {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── KPI Strip (inline metrics) ─────────────────────── */
.card-kpi {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.kpi-item { font-size: 12px; }
.kpi-label { color: var(--text-muted); margin-right: 4px; }
.kpi-value { font-weight: 600; font-family: var(--font-mono); }
.kpi-up   { color: var(--accent-green); }
.kpi-down { color: var(--accent-red); }

/* ── Article (single) ────────────────────────────────── */
.article-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.article-category-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
}
.article-category-bar .category { color: var(--accent); font-weight: 700; text-transform: uppercase; }
.article-category-bar .sep { color: var(--text-muted); }
.article-category-bar .market { color: var(--text-secondary); }

.article-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 12px;
}
.article-byline {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.article-byline .author { color: var(--text-secondary); }

/* ── Article Body ────────────────────────────────────── */
.article-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-primary);
}
.article-body h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.article-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 8px;
}
.article-body p { margin-bottom: 16px; }
.article-body strong { color: #fff; font-weight: 600; }
.article-body em { color: var(--text-secondary); font-style: italic; }
.article-body ul, .article-body ol {
  margin: 12px 0 16px 20px;
}
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 20px 0;
  padding: 12px 20px;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-style: italic;
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}
.article-body code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-card);
  padding: 1px 5px;
  border-radius: 2px;
  color: var(--accent-yellow);
}
.article-body pre {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 16px;
  overflow-x: auto;
  border-radius: var(--radius);
  margin: 16px 0;
}
.article-body pre code { background: none; padding: 0; }

/* ── Article Footer ──────────────────────────────────── */
.article-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.source-links {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.source-links a { color: var(--accent); }
.disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  padding: 12px;
  background: var(--bg-card);
  border-left: 3px solid var(--border);
}
.lang-switch {
  display: inline-flex;
  gap: 4px;
  margin-top: 12px;
}
.lang-switch a {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-secondary);
}
.lang-switch a:hover { border-color: var(--accent); color: var(--accent); }
.lang-switch a.active { border-color: var(--accent); color: var(--accent); background: rgba(255,102,0,0.08); }

/* ── Tags ────────────────────────────────────────────── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.tag {
  font-size: 11px;
  padding: 3px 8px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-secondary);
  text-decoration: none;
}
.tag:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ── Sidebar ─────────────────────────────────────────── */
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 20px;
}
.widget-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.recent-list { list-style: none; }
.recent-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.recent-list li:last-child { border-bottom: none; }
.recent-list a { color: var(--text-primary); }
.recent-list a:hover { color: var(--accent); text-decoration: none; }
.recent-list .date { font-size: 11px; color: var(--text-muted); display: block; margin-top: 2px; }

/* ── Pagination ──────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 32px 0;
}
.pagination a, .pagination span {
  padding: 6px 12px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius);
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.pagination .active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 700;
}

/* ── Hero ────────────────────────────────────────────── */
.index-hero {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.index-hero-footer {
  margin-top: 32px;
  margin-bottom: 0;
  border-left-color: var(--border);
  opacity: 0.7;
}
.index-hero h1, .index-hero h2 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.index-hero-footer h2 {
  font-size: 16px;
  color: var(--text-secondary);
}
.index-hero p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.index-hero .hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.hero-stat { font-size: 12px; color: var(--text-muted); }
.hero-stat strong { color: var(--accent); font-size: 18px; display: block; font-family: var(--font-mono); }

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  margin-top: 48px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .brand-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); text-decoration: none; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .page-wrapper { grid-template-columns: 1fr; }
  aside { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .header-inner { padding: 0 12px; }
  .site-logo .logo-text { font-size: 13px; }
  .site-nav a { padding: 4px 6px; font-size: 12px; }
  .article-title { font-size: 20px; }
  .page-wrapper { padding: 16px 12px; }
  .index-hero .hero-stats { gap: 12px; }
}

/* ── Editor Focus Block ─────────────────────────────── */
.editor-focus-block {
  margin-top: 32px;
  padding: 18px 22px;
  background: #141414;
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}
.editor-focus-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.editor-focus-block p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 10px;
}
.editor-focus-block p:last-child { margin-bottom: 0; }

/* ── Review Badge (index / list cards) ──────────────── */
.review-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 2px;
  vertical-align: middle;
  white-space: nowrap;
  font-family: var(--font-mono, monospace);
}
.review-badge.auto     { background: #1a0505; color: #cc4444; border: 1px solid #8b1a1a; }
.review-badge.reviewed { background: #1a1500; color: #ccaa00; border: 1px solid #7a6600; }
.review-badge.edit     { background: #071a0c; color: #4dcc6d; border: 1px solid #1a5c2a; }

/* ── Article Status Notices ──────────────────────────── */
.status-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 4px;
}
.status-notice-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.status-notice-text {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.status-notice-text strong {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.status-notice-text a { text-decoration: underline; }

/* auto-generate: wine red */
.status-notice.auto {
  background: #1a0505;
  border: 1px solid #8b1a1a;
  border-left: 3px solid #cc4444;
}
.status-notice.auto .status-notice-text strong { color: #cc4444; }
.status-notice.auto .status-notice-text a      { color: #cc4444; }

/* reviewed: yellow */
.status-notice.reviewed {
  background: #1a1500;
  border: 1px solid #7a6600;
  border-left: 3px solid #ccaa00;
}
.status-notice.reviewed .status-notice-text strong { color: #ccaa00; }
.status-notice.reviewed .status-notice-text a      { color: #ccaa00; }

/* edit: green */
.status-notice.edit {
  background: #071a0c;
  border: 1px solid #1a5c2a;
  border-left: 3px solid #4dcc6d;
}
.status-notice.edit .status-notice-text strong { color: #4dcc6d; }
.status-notice.edit .status-notice-text a      { color: #4dcc6d; }

/* legacy alias */
.unreviewed-notice { display:flex; gap:12px; align-items:flex-start; margin-bottom:24px; padding:14px 18px; background:#1a1200; border:1px solid #554400; border-left:3px solid var(--accent-yellow); border-radius:4px; }
.unreviewed-icon   { font-size:16px; flex-shrink:0; margin-top:1px; }
.unreviewed-text   { font-size:12.5px; color:var(--text-secondary); line-height:1.6; }
.unreviewed-text strong { color:var(--accent-yellow); font-weight:700; display:block; margin-bottom:4px; font-size:11px; text-transform:uppercase; letter-spacing:0.05em; }
.unreviewed-text a { color:var(--accent-yellow); text-decoration:underline; }

/* ── Utility ─────────────────────────────────────────── */
.text-muted   { color: var(--text-muted); }
.text-accent  { color: var(--accent); }
.text-green   { color: var(--accent-green); }
.text-red     { color: var(--accent-red); }
.mono         { font-family: var(--font-mono); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Author Box ──────────────────────────────────────── */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 32px 0 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
}
.author-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.author-avatar--ai       { background: var(--accent); color: #000; }
.author-avatar--reviewed { background: #1a5c2a; color: #4dcc6d; border: 1px solid #4dcc6d; }
.author-avatar--edit     { background: #0a3060; color: #4d9fff; border: 1px solid #4d9fff; }
.author-info { flex: 1; min-width: 0; }
.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.author-role {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.author-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
