/* ============================================================
   MetaMedia Brand Sites — Stylesheet
   Covers: newspaper, magazine, blog, minimal layout variants
   Will be replaced with compiled Tailwind output later.
   ============================================================ */

/* --- Reset / Normalize --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; }
body { margin: 0; font-family: var(--font-body), system-ui, sans-serif; background: var(--color-bg); color: var(--color-text); }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; font-family: var(--font-headline), system-ui, sans-serif; line-height: 1.2; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
figure { margin: 0; }
hr { border: none; height: 1px; background: #ddd; margin: 1.5rem 0; }
select, button { font: inherit; }

/* --- Utility --- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Pagination (shared) --- */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.25rem; padding: 2rem 0; }
.pagination-link { display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; height: 2.25rem; padding: 0 0.5rem; border: 1px solid #ddd; border-radius: 4px; font-size: 0.875rem; transition: background 0.15s, color 0.15s; }
.pagination-link:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination-current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination-disabled { opacity: 0.35; pointer-events: none; }
.pagination-ellipsis { padding: 0 0.25rem; color: #999; }

/* ============================================================
   NEWSPAPER LAYOUT (np-)
   Dense, wire-service aesthetic. Dark header, text-heavy.
   ============================================================ */

.np-body { background: #fff; }

/* Header */
.np-header { background: var(--color-primary); color: #fff; }
.np-header-inner { max-width: 1200px; margin: 0 auto; padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.np-brand { font-family: var(--font-headline); font-weight: 800; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; }
.np-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.np-nav-link { font-size: 0.8125rem; color: rgba(255,255,255,0.75); transition: color 0.15s; }
.np-nav-link:hover { color: #fff; }
.np-accent-line { height: 3px; background: var(--color-accent); }

/* Main / Container */
.np-main { min-height: 60vh; }
.np-container { max-width: 1200px; margin: 0 auto; padding: 1.5rem 1rem; }

/* Breaking banner */
.np-breaking { background: var(--color-accent); color: #fff; padding: 0.5rem 1rem; display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; border-radius: 2px; }
.np-breaking-label { font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; background: rgba(0,0,0,0.2); padding: 0.125rem 0.5rem; border-radius: 2px; flex-shrink: 0; }
.np-breaking-link { color: #fff; font-weight: 600; font-size: 0.9375rem; }
.np-breaking-link:hover { text-decoration: underline; }

/* Top story */
.np-top-story { margin-bottom: 0.5rem; }
.np-dateline { font-size: 0.8125rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.np-top-headline { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 800; line-height: 1.15; }
.np-top-headline a:hover { color: var(--color-accent); }
.np-top-excerpt { font-size: 1.0625rem; color: #444; max-width: 720px; margin-top: 0.5rem; }
.np-badge { display: inline-block; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; background: var(--color-secondary); color: #fff; padding: 0.125rem 0.5rem; border-radius: 2px; margin-top: 0.5rem; }
.np-badge-sm { font-size: 0.625rem; padding: 0.0625rem 0.375rem; }

/* Dividers */
.np-divider { background: #e0e0e0; }
.np-divider-row { grid-column: 1 / -1; }

/* Article grid */
.np-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem 1.5rem; }
.np-card { padding-bottom: 0.75rem; }
.np-card-headline { font-size: 1rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.375rem; }
.np-card-headline a:hover { color: var(--color-accent); }
.np-card-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #888; margin-bottom: 0.375rem; }
.np-card-excerpt { font-size: 0.875rem; color: #555; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

@media (max-width: 768px) {
  .np-grid { grid-template-columns: 1fr; }
  .np-divider-row { display: block; }
}

/* Article page */
.np-article { max-width: 760px; }
.np-article-headline { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; }
.np-article-byline { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: #888; margin-bottom: 1.5rem; flex-wrap: wrap; }
.np-byline-source { font-weight: 600; color: var(--color-primary); }
.np-byline-sep { color: #ccc; }
.np-article-figure { margin: 1.5rem 0; }
.np-article-figure img { width: 100%; border-radius: 2px; }
.np-article-figure figcaption { font-size: 0.8125rem; color: #888; margin-top: 0.375rem; }
.np-article-body { font-size: 1.0625rem; line-height: 1.7; }
.np-article-body p { margin-bottom: 1.25rem; }
.np-article-body a { color: var(--color-accent); text-decoration: underline; }
.np-article-body blockquote { border-left: 3px solid var(--color-accent); padding-left: 1rem; margin: 1.5rem 0; color: #555; font-style: italic; }

/* Sources */
.np-sources { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e0e0e0; }
.np-sources-title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.np-sources-list li { font-size: 0.875rem; margin-bottom: 0.375rem; }
.np-sources-list a { color: var(--color-accent); text-decoration: underline; }

/* Related */
.np-related { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 2px solid var(--color-primary); }
.np-related-title { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.np-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 768px) { .np-related-grid { grid-template-columns: 1fr; } }

/* Rubric header */
.np-rubric-header { margin-bottom: 0.5rem; }
.np-rubric-title { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.np-rubric-desc { font-size: 0.9375rem; color: #666; }

/* About */
.np-about { max-width: 720px; }
.np-about-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.np-about-body { line-height: 1.7; }

/* Footer */
.np-footer { border-top: 1px solid #e0e0e0; margin-top: 2rem; }
.np-footer .np-container { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; font-size: 0.8125rem; color: #888; }
.np-footer-brand { font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary); }


/* ============================================================
   MAGAZINE LAYOUT (mg-)
   Editorial, elegant. Serif headlines, cards with shadow.
   ============================================================ */

.mg-body { background: var(--color-bg); }

/* Header */
.mg-header { background: #fff; border-bottom: 1px solid #e8e8e8; }
.mg-header-inner { max-width: 1280px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.mg-brand { font-family: Georgia, 'Times New Roman', var(--font-headline), serif; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); letter-spacing: -0.02em; }
.mg-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.mg-nav-link { font-size: 0.875rem; color: #555; position: relative; transition: color 0.15s; }
.mg-nav-link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--color-accent); transition: width 0.2s; }
.mg-nav-link:hover { color: var(--color-primary); }
.mg-nav-link:hover::after { width: 100%; }

/* Container */
.mg-main { min-height: 60vh; }
.mg-container { max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem; }

/* Hero */
.mg-hero { position: relative; min-height: 420px; display: flex; align-items: flex-end; background: var(--color-secondary); background-size: cover; background-position: center; border-radius: 8px; overflow: hidden; margin-bottom: 2.5rem; }
.mg-hero-content { padding: 2.5rem; color: #fff; max-width: 640px; }
.mg-hero-headline { font-family: Georgia, 'Times New Roman', var(--font-headline), serif; font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem; }
.mg-hero-headline a { color: #fff; }
.mg-hero-headline a:hover { text-decoration: underline; }
.mg-hero-excerpt { font-size: 1.0625rem; color: rgba(255,255,255,0.85); margin-bottom: 0.75rem; }
.mg-hero-meta { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }

/* Category tag */
.mg-category-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); margin-bottom: 0.5rem; }
.mg-category-tag-sm { font-size: 0.6875rem; }

/* Layout: grid + sidebar */
.mg-layout { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
@media (max-width: 960px) { .mg-layout { grid-template-columns: 1fr; } }

/* Card grid */
.mg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.mg-grid-rubric { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .mg-grid, .mg-grid-rubric { grid-template-columns: 1fr; } }

.mg-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.mg-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.mg-card-image-link { display: block; }
.mg-card-image { width: 100%; height: 200px; object-fit: cover; }
.mg-card-body { padding: 1.25rem; }
.mg-card-headline { font-family: Georgia, 'Times New Roman', var(--font-headline), serif; font-size: 1.125rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.5rem; }
.mg-card-headline a:hover { color: var(--color-accent); }
.mg-card-excerpt { font-size: 0.9375rem; color: #555; line-height: 1.55; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mg-card-meta { font-size: 0.8125rem; color: #999; }

/* Sidebar */
.mg-sidebar { }
.mg-sidebar-title { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #999; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-accent); }
.mg-sidebar-list li { padding: 0.625rem 0; border-bottom: 1px solid #eee; }
.mg-sidebar-link { font-size: 0.9375rem; color: var(--color-primary); font-weight: 500; }
.mg-sidebar-link:hover { color: var(--color-accent); }

/* Article page */
.mg-article { max-width: 780px; margin: 0 auto; }
.mg-article-header { margin-bottom: 2rem; text-align: center; }
.mg-article-headline { font-family: Georgia, 'Times New Roman', var(--font-headline), serif; font-size: clamp(1.75rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 0.75rem; }
.mg-article-byline { font-size: 0.875rem; color: #999; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.mg-byline-sep { color: #ccc; }
.mg-article-figure { margin: 2rem -2rem; }
.mg-article-figure img { width: 100%; border-radius: 6px; }
.mg-article-figure figcaption { font-size: 0.8125rem; color: #888; margin-top: 0.5rem; text-align: center; }
@media (max-width: 640px) { .mg-article-figure { margin: 1.5rem 0; } }

.mg-article-body { font-size: 1.0625rem; line-height: 1.75; }
.mg-article-body p { margin-bottom: 1.5rem; }
/* Drop cap */
.mg-article-body > p:first-of-type::first-letter { float: left; font-family: Georgia, serif; font-size: 3.5rem; line-height: 0.8; padding-right: 0.5rem; padding-top: 0.25rem; color: var(--color-primary); font-weight: 700; }
.mg-article-body a { color: var(--color-accent); text-decoration: underline; }
.mg-article-body blockquote { margin: 2rem 0; padding: 1.5rem 2rem; border-left: 4px solid var(--color-accent); background: rgba(0,0,0,0.02); font-size: 1.25rem; font-style: italic; line-height: 1.6; color: #444; font-family: Georgia, serif; }

/* Sources */
.mg-sources { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e0e0e0; }
.mg-sources-title { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; color: #999; }
.mg-sources-list li { font-size: 0.875rem; margin-bottom: 0.375rem; }
.mg-sources-list a { color: var(--color-accent); text-decoration: underline; }

/* Related */
.mg-related { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid #e0e0e0; }
.mg-related-title { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.mg-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .mg-related-grid { grid-template-columns: 1fr; } }

/* Rubric header */
.mg-rubric-header { text-align: center; margin-bottom: 2rem; }
.mg-rubric-title { font-family: Georgia, serif; font-size: 2rem; font-weight: 700; }
.mg-rubric-desc { font-size: 1.0625rem; color: #666; max-width: 600px; margin: 0.5rem auto 0; }

/* About */
.mg-about { max-width: 720px; margin: 0 auto; }
.mg-about-title { font-family: Georgia, serif; font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
.mg-about-body { line-height: 1.75; font-size: 1.0625rem; }

/* Footer */
.mg-footer { border-top: 1px solid #e0e0e0; margin-top: 3rem; background: #fff; }
.mg-footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; font-size: 0.8125rem; color: #999; }
.mg-footer-brand { font-family: Georgia, serif; font-weight: 700; color: var(--color-primary); }


/* ============================================================
   BLOG LAYOUT (bl-)
   Personality-driven, single-column feed, casual.
   ============================================================ */

.bl-body { background: var(--color-bg); }

/* Header */
.bl-header { text-align: center; padding: 2rem 1rem 1rem; background: #fff; border-bottom: 1px solid #eee; }
.bl-header-inner { max-width: 720px; margin: 0 auto; }
.bl-brand { display: inline-block; font-family: var(--font-headline); font-size: 2rem; font-weight: 800; color: var(--color-primary); margin-bottom: 0.75rem; }
.bl-nav { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.bl-nav-pill { display: inline-block; padding: 0.375rem 1rem; font-size: 0.875rem; font-weight: 500; border-radius: 9999px; color: var(--color-primary); background: var(--color-bg); transition: background 0.15s, color 0.15s; }
.bl-nav-pill:hover { background: var(--color-primary); color: #fff; }

/* Container */
.bl-main { min-height: 60vh; }
.bl-container { max-width: 720px; margin: 0 auto; padding: 2rem 1rem; }

/* Feed */
.bl-feed { display: flex; flex-direction: column; gap: 2rem; }

/* Post card */
.bl-post { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.bl-post-image-link { display: block; }
.bl-post-image { width: 100%; height: 280px; object-fit: cover; }
.bl-post-body { padding: 1.5rem; }
.bl-content-badge { display: inline-block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.1875rem 0.625rem; border-radius: 9999px; background: var(--color-accent); color: #fff; margin-bottom: 0.75rem; }
.bl-post-headline { font-size: 1.375rem; font-weight: 800; line-height: 1.25; margin-bottom: 0.5rem; }
.bl-post-headline a:hover { color: var(--color-accent); }
.bl-post-meta { font-size: 0.8125rem; color: #999; margin-bottom: 0.75rem; display: flex; gap: 0.375rem; flex-wrap: wrap; }
.bl-post-excerpt { font-size: 1rem; color: #555; line-height: 1.6; margin-bottom: 0.75rem; }
.bl-read-more { font-size: 0.875rem; font-weight: 600; color: var(--color-accent); }
.bl-read-more:hover { text-decoration: underline; }

/* Load more */
.bl-load-more { text-align: center; padding: 2rem 0; }
.bl-load-more-btn { display: inline-block; padding: 0.75rem 2rem; border: 2px solid var(--color-primary); border-radius: 9999px; font-weight: 600; color: var(--color-primary); transition: background 0.15s, color 0.15s; }
.bl-load-more-btn:hover { background: var(--color-primary); color: #fff; }

/* Article page */
.bl-article { max-width: 720px; }
.bl-article-header { margin-bottom: 1.5rem; }
.bl-article-headline { font-size: clamp(1.5rem, 5vw, 2.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 0.5rem; }
.bl-article-meta { font-size: 0.875rem; color: #999; display: flex; gap: 0.375rem; flex-wrap: wrap; }
.bl-article-figure { margin: 1.5rem 0; }
.bl-article-figure img { width: 100%; border-radius: 8px; }
.bl-article-figure figcaption { font-size: 0.8125rem; color: #888; margin-top: 0.5rem; }
.bl-article-body { font-size: 1.125rem; line-height: 1.75; }
.bl-article-body p { margin-bottom: 1.5rem; }
.bl-article-body a { color: var(--color-accent); text-decoration: underline; }
.bl-article-body blockquote { border-left: 4px solid var(--color-accent); padding-left: 1.25rem; margin: 1.5rem 0; font-style: italic; color: #555; }
.bl-article-body img { border-radius: 8px; margin: 1.5rem 0; }

/* Share */
.bl-share { display: flex; align-items: center; gap: 0.75rem; padding: 1.5rem 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin: 2rem 0; }
.bl-share-label { font-size: 0.875rem; font-weight: 600; color: #999; }
.bl-share-btn { display: inline-block; padding: 0.375rem 0.875rem; font-size: 0.8125rem; font-weight: 600; border-radius: 9999px; background: var(--color-bg); color: var(--color-primary); transition: background 0.15s, color 0.15s; }
.bl-share-btn:hover { background: var(--color-primary); color: #fff; }

/* Sources */
.bl-sources { margin-top: 2rem; padding: 1.25rem; background: var(--color-bg); border-radius: 8px; }
.bl-sources-title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.bl-sources-list li { font-size: 0.875rem; margin-bottom: 0.375rem; }
.bl-sources-list a { color: var(--color-accent); text-decoration: underline; }

/* Related */
.bl-related { margin-top: 2.5rem; }
.bl-related-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.25rem; }
.bl-related-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 640px) { .bl-related-list { grid-template-columns: 1fr; } }
.bl-related-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.bl-related-img { width: 100%; height: 140px; object-fit: cover; }
.bl-related-headline { font-size: 0.9375rem; font-weight: 700; padding: 0.75rem; line-height: 1.3; }
.bl-related-headline a:hover { color: var(--color-accent); }
.bl-related-card time { display: block; font-size: 0.75rem; color: #999; padding: 0 0.75rem 0.75rem; }

/* Rubric */
.bl-rubric-header { text-align: center; margin-bottom: 1.5rem; }
.bl-rubric-title { font-size: 1.75rem; font-weight: 800; }
.bl-rubric-desc { font-size: 1rem; color: #666; margin-top: 0.5rem; }

/* About */
.bl-about { max-width: 720px; }
.bl-about-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
.bl-about-body { font-size: 1.0625rem; line-height: 1.75; }

/* Footer */
.bl-footer { text-align: center; padding: 1.5rem 1rem; font-size: 0.8125rem; color: #999; border-top: 1px solid #eee; margin-top: 2rem; }
.bl-footer-brand { font-weight: 700; color: var(--color-primary); }


/* ============================================================
   MINIMAL LAYOUT (mn-)
   Bellingcat / intelligence briefing. Ultra-clean, monospace.
   ============================================================ */

.mn-body { background: #fff; }

/* Header */
.mn-header { border-bottom: 1px solid #e0e0e0; }
.mn-header-inner { max-width: 960px; margin: 0 auto; padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.mn-brand { font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace; font-size: 0.9375rem; font-weight: 600; color: var(--color-primary); letter-spacing: 0.02em; }
.mn-nav { display: flex; gap: 1rem; }
.mn-nav-link { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.06em; }
.mn-nav-link:hover { color: var(--color-primary); }

/* Container */
.mn-main { min-height: 60vh; }
.mn-container { max-width: 960px; margin: 0 auto; padding: 1.5rem 1rem; }

/* Controls */
.mn-controls { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #eee; flex-wrap: wrap; }
.mn-filter-group { display: flex; align-items: center; gap: 0.5rem; }
.mn-filter-label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.06em; }
.mn-select { padding: 0.375rem 0.75rem; font-size: 0.8125rem; border: 1px solid #ddd; border-radius: 4px; background: #fff; color: var(--color-text); }

/* Table */
.mn-table-wrap { overflow-x: auto; }
.mn-table { font-size: 0.875rem; }
.mn-th { text-align: left; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #999; padding: 0.5rem 0.75rem; border-bottom: 2px solid #e0e0e0; }
.mn-th-date { width: 120px; white-space: nowrap; }
.mn-th-cat { width: 140px; }
.mn-th-headline { }
.mn-td { padding: 0.625rem 0.75rem; vertical-align: top; }
.mn-td-date { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.8125rem; color: #888; white-space: nowrap; }
.mn-td-cat { }
.mn-cat-label { font-size: 0.75rem; color: #666; }
.mn-td-headline { }
.mn-headline-link { color: var(--color-text); font-weight: 500; }
.mn-headline-link:hover { color: var(--color-accent); }
.mn-row-even { background: #fff; }
.mn-row-odd { background: #fafafa; }
.mn-row { border-bottom: 1px solid #f0f0f0; }

@media (max-width: 640px) {
  .mn-th-cat, .mn-td-cat { display: none; }
  .mn-th-date { width: 90px; }
}

/* Article page */
.mn-article { max-width: 640px; }
.mn-article-header { margin-bottom: 1.5rem; }
.mn-article-headline { font-size: clamp(1.25rem, 3.5vw, 1.75rem); font-weight: 700; line-height: 1.25; margin-bottom: 0.75rem; }
.mn-article-meta { font-size: 0.8125rem; color: #888; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.mn-meta-sep { color: #ccc; }
.mn-article-body { font-size: 1rem; line-height: 1.75; }
.mn-article-body p { margin-bottom: 1.25rem; }
.mn-article-body a { color: var(--color-accent); text-decoration: underline; }
.mn-article-body code, .mn-article-body .stat { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.875em; background: #f5f5f5; padding: 0.125em 0.375em; border-radius: 3px; }
.mn-article-body blockquote { border-left: 2px solid #ddd; padding-left: 1rem; margin: 1.5rem 0; color: #666; }

/* Sources */
.mn-sources { margin-top: 2rem; padding-top: 1.5rem; border-top: 2px solid var(--color-primary); }
.mn-sources-title { font-family: 'SF Mono', monospace; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.mn-sources-list li { font-size: 0.875rem; margin-bottom: 0.375rem; padding-left: 1rem; position: relative; }
.mn-sources-list li::before { content: '->'; position: absolute; left: 0; font-family: monospace; color: #999; }
.mn-sources-list a { color: var(--color-accent); text-decoration: underline; }

/* Related */
.mn-related { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #e0e0e0; }
.mn-related-title { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #999; margin-bottom: 1rem; }

/* Rubric */
.mn-rubric-header { margin-bottom: 1.5rem; }
.mn-rubric-title { font-size: 1.25rem; font-weight: 700; }
.mn-rubric-desc { font-size: 0.9375rem; color: #666; margin-top: 0.25rem; }

/* About */
.mn-about { max-width: 640px; }
.mn-about-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.mn-about-body { line-height: 1.75; }

/* Footer */
.mn-footer { border-top: 1px solid #e0e0e0; margin-top: 2rem; }
.mn-footer .mn-container { padding-top: 1rem; padding-bottom: 1rem; font-size: 0.75rem; color: #999; }
