/* Daily Channels — Shared Base CSS */
/* All templates share this foundation. Each channel overrides with its own brand vars. */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* These get overridden per-channel */
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --text: #F5F5F5;
  --text-muted: #999;
  --accent: #FF6B35;
  --accent-soft: rgba(255, 107, 53, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* === Single Post: 1080x1080 === */
.post {
  width: 1080px;
  height: 1080px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

/* === Carousel Slide: 1080x1350 === */
.slide {
  width: 1080px;
  height: 1350px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

/* === Header / Brand Bar === */
.brand-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-shrink: 0;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  font-weight: 700;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-date {
  margin-left: auto;
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

/* === Content Area === */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

/* === Category / Tag === */
.tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 100px;
  align-self: flex-start;
}

/* === Headlines === */
.headline {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.headline-lg {
  font-size: 64px;
}

.headline-sm {
  font-size: 40px;
}

/* === Body Text === */
.body {
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 90%;
}

.body-lg {
  font-size: 28px;
  line-height: 1.45;
}

/* === Key Stat / Number === */
.stat-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 28px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* === Divider === */
.divider {
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* === Card / Box === */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.card-accent {
  border-left: 4px solid var(--accent);
}

/* === Bullet List === */
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bullets li {
  font-size: 24px;
  line-height: 1.4;
  color: var(--text);
  padding-left: 28px;
  position: relative;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* === Footer / CTA === */
.footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.footer-cta {
  font-size: 20px;
  color: var(--text-muted);
}

.footer-handle {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

/* === Background Decorations === */
.bg-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.06;
  filter: blur(120px);
  pointer-events: none;
}

.bg-glow-tr { top: -100px; right: -100px; }
.bg-glow-bl { bottom: -100px; left: -100px; }

/* === Two-Column Layout === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* === Source Citation === */
.source {
  font-size: 16px;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.7;
}

/* === Versus / Comparison === */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.vs-divider {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.3;
}
