:root {
  --red: #e8001c;
  --dark: #1a1a1a;
  --mid: #2e2e2e;
  --light: #f5f5f5;
  --accent: #ff6b00;
  --text: #222;
  --muted: #777;
  --border: #e0e0e0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Georgia', serif; background: var(--light); color: var(--text); }

/* ── HEADER ── */
header { background: var(--dark); color: #fff; }
.top-bar { background: var(--red); text-align: center; font-size: 0.75rem; padding: 6px; letter-spacing: 1px; }
.top-bar span { color: #fff; font-weight: bold; }
.header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; }
.logo { font-size: 2.4rem; font-weight: 900; letter-spacing: -1px; color: #fff; text-decoration: none; }
.logo span { color: var(--red); }
.header-tagline { font-size: 0.8rem; color: #aaa; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* ── NAV ── */
nav { background: var(--mid); }
nav ul { max-width: 1200px; margin: 0 auto; display: flex; list-style: none; padding: 0 20px; }
nav ul li a { display: block; color: #ddd; text-decoration: none; padding: 12px 16px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: color .2s, background .2s; font-family: sans-serif; }
nav ul li a:hover, nav ul li.active a { color: #fff; background: var(--red); }
.nav-breaking { background: var(--red) !important; color: #fff !important; }

/* ── TICKER ── */
.ticker-wrap { background: var(--red); overflow: hidden; white-space: nowrap; padding: 8px 0; }
.ticker-label { background: #fff; color: var(--red); font-weight: 900; font-size: 0.75rem; padding: 2px 10px; margin-right: 14px; font-family: sans-serif; }
.ticker-inner { display: inline-block; animation: ticker 40s linear infinite; }
.ticker-inner span { color: #fff; font-size: 0.82rem; font-family: sans-serif; margin-right: 60px; }
.ticker-inner span::before { content: "★ "; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── LAYOUT ── */
.main-wrapper { max-width: 1200px; margin: 30px auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 320px; gap: 30px; }

/* ── HERO ARTICLE ── */
.hero { background: #fff; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,.08); overflow: hidden; margin-bottom: 30px; }
.hero-badge { background: var(--red); color: #fff; font-size: 0.7rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; display: inline-block; font-family: sans-serif; }
.hero-content { padding: 28px 32px 32px; }
.hero h1 { font-size: 2rem; line-height: 1.25; margin: 14px 0 10px; color: var(--dark); }
.hero h1 em { color: var(--red); font-style: normal; }
.hero .byline { font-size: 0.78rem; color: var(--muted); font-family: sans-serif; margin-bottom: 20px; }
.hero .byline b { color: var(--accent); }
.hero .lead { font-size: 1.1rem; color: #444; line-height: 1.7; margin-bottom: 22px; font-style: italic; border-left: 4px solid var(--red); padding-left: 16px; }
.hero .body-text { font-size: 0.97rem; line-height: 1.8; color: #333; }
.hero .body-text p { margin-bottom: 16px; }
.hero .body-text blockquote { border-left: 4px solid var(--accent); padding: 10px 18px; background: #fff8f0; margin: 20px 0; font-style: italic; color: #555; font-size: 1.05rem; }

/* ── ARTICLE PAGE ── */
.article-page { background: #fff; border: 1px solid var(--border); padding: 32px; margin-bottom: 30px; }
.article-page h1 { font-size: 1.9rem; line-height: 1.3; margin: 14px 0 12px; color: var(--dark); }
.article-page h1 em { color: var(--red); font-style: normal; }
.article-page .byline { font-size: 0.78rem; color: var(--muted); font-family: sans-serif; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.article-page .byline b { color: var(--accent); }
.article-page .lead { font-size: 1.08rem; color: #444; line-height: 1.7; margin-bottom: 22px; font-style: italic; border-left: 4px solid var(--red); padding-left: 16px; }
.article-page .body-text { font-size: 0.97rem; line-height: 1.85; color: #333; }
.article-page .body-text p { margin-bottom: 18px; }
.article-page .body-text blockquote { border-left: 4px solid var(--accent); padding: 12px 20px; background: #fff8f0; margin: 22px 0; font-style: italic; color: #555; font-size: 1.05rem; }
.article-page .body-text h2 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--dark); border-bottom: 2px solid var(--border); padding-bottom: 6px; }

/* ── VIDEO ── */
.video-box { background: #000; margin: 24px 0; position: relative; }
.video-caption { background: var(--dark); color: #ccc; font-size: 0.75rem; font-family: sans-serif; padding: 8px 12px; }
.video-box video { width: 100%; display: block; max-height: 500px; }

/* ── TAG ── */
.tags { margin-top: 24px; }
.tags a { display: inline-block; background: var(--light); border: 1px solid var(--border); color: var(--muted); font-size: 0.75rem; font-family: sans-serif; padding: 4px 10px; margin: 3px; text-decoration: none; border-radius: 2px; transition: background .2s; }
.tags a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ── SHARE BAR ── */
.share-bar { display: flex; gap: 10px; margin: 22px 0; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 3px; font-size: 0.8rem; font-family: sans-serif; font-weight: bold; cursor: pointer; text-decoration: none; color: #fff; border: none; }
.share-fb { background: #1877f2; }
.share-tw { background: #000; }
.share-wa { background: #25d366; }
.share-copy { background: #555; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.78rem; font-family: sans-serif; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── SECTION HEADER ── */
.section-header { background: #fff; border: 1px solid var(--border); padding: 24px 28px; margin-bottom: 24px; border-left: 6px solid var(--red); }
.section-header h1 { font-size: 1.5rem; color: var(--dark); margin-bottom: 6px; }
.section-header p { font-size: 0.88rem; color: var(--muted); font-family: sans-serif; }

/* ── GRID NEWS ── */
.section-title { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--dark); border-bottom: 3px solid var(--red); padding-bottom: 8px; margin-bottom: 20px; font-family: sans-serif; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.news-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 40px; }
.news-card { background: #fff; border: 1px solid var(--border); overflow: hidden; transition: transform .2s, box-shadow .2s; text-decoration: none; color: inherit; display: block; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.news-card .card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.news-card .card-img-placeholder { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.news-card .card-body { padding: 14px 16px 18px; }
.news-card .card-cat { font-size: 0.68rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-family: sans-serif; margin-bottom: 6px; }
.news-card h3 { font-size: 1rem; line-height: 1.35; margin-bottom: 8px; color: var(--dark); }
.news-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; font-family: sans-serif; }
.news-card .card-meta { font-size: 0.72rem; color: #bbb; font-family: sans-serif; margin-top: 10px; }

/* ── FEATURED CARD (large) ── */
.card-featured { grid-column: span 2; }
.card-featured .card-img-placeholder { height: 280px; }

/* ── SIDEBAR ── */
.sidebar-widget { background: #fff; border: 1px solid var(--border); padding: 20px; margin-bottom: 24px; }
.sidebar-widget .section-title { font-size: 0.9rem; }
.hot-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.hot-item:last-child { border-bottom: none; }
.hot-num { font-size: 1.6rem; font-weight: 900; color: var(--red); min-width: 32px; font-family: sans-serif; line-height: 1; }
.hot-item h4 { font-size: 0.88rem; line-height: 1.4; color: var(--dark); }
.hot-item span { font-size: 0.72rem; color: var(--muted); font-family: sans-serif; }

.poll-widget .poll-q { font-size: 0.9rem; font-weight: bold; margin-bottom: 14px; line-height: 1.4; }
.poll-option { margin-bottom: 10px; cursor: pointer; }
.poll-option label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.85rem; font-family: sans-serif; }
.poll-option input[type=radio] { accent-color: var(--red); transform: scale(1.2); }
.poll-bar-wrap { background: var(--light); border-radius: 2px; height: 6px; margin-top: 4px; overflow: hidden; }
.poll-bar { height: 100%; background: var(--red); border-radius: 2px; }
.poll-pct { font-size: 0.72rem; color: var(--muted); font-family: sans-serif; }

.newsletter-widget input[type=email] { width: 100%; border: 1px solid var(--border); padding: 9px 12px; font-size: 0.85rem; font-family: sans-serif; margin-bottom: 8px; outline: none; }
.newsletter-widget input[type=email]:focus { border-color: var(--red); }
.newsletter-widget button { width: 100%; background: var(--red); color: #fff; border: none; padding: 10px; font-size: 0.85rem; font-family: sans-serif; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.newsletter-widget button:hover { background: #c0001a; }
.newsletter-widget p { font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; font-family: sans-serif; }

/* ── NEWS ROW ── */
.news-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 40px; }

/* ── RELATED ARTICLES ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ── FOOTER ── */
footer { background: var(--dark); color: #aaa; margin-top: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 40px 20px 20px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; font-family: sans-serif; }
footer p, footer li { font-size: 0.8rem; line-height: 1.7; font-family: sans-serif; }
footer ul { list-style: none; }
footer ul li a { color: #aaa; text-decoration: none; }
footer ul li a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 16px 20px; border-top: 1px solid #333; display: flex; justify-content: space-between; font-size: 0.75rem; font-family: sans-serif; }
.footer-logo { font-size: 1.6rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--red); }

.placeholder-img { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; flex-shrink: 0; }
.pill { display: inline-block; background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; font-family: sans-serif; margin-right: 6px; vertical-align: middle; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .main-wrapper { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .card-featured { grid-column: span 1; }
}
@media (max-width: 600px) {
  .hero h1, .article-page h1 { font-size: 1.45rem; }
  .news-grid { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 1fr; }
  nav ul { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
