
/* ─── CRIS NEWS – RED & WHITE SUPREME PLATINUM ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&display=swap');

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

:root {
  --bg:       #ffffff;
  --bg2:      #f9fafb;
  --bg3:      #111111;
  --border:   #e5e7eb;
  --accent:   #dc2626; /* Crimson Red */
  --accent-soft: #fef2f2;
  --white:    #ffffff;
  --text:     #111827;
  --text-muted: #6b7280;
  --radius:   4px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: all 0.2s; }
a:hover { color: var(--accent); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ─── HEADER ─── */
.top-bar { background: var(--bg3); color: #fff; padding: 10px 0; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.top-bar-inner { display: flex; justify-content: space-between; max-width: 1240px; margin: 0 auto; padding: 0 20px; }

header { padding: 35px 0; border-bottom: 4px solid var(--accent); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--bg3); letter-spacing: -1.5px; }
.logo span { color: var(--accent); }

/* ─── NAV ─── */
nav.main-nav { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 65px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--text); padding: 22px 0; position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--accent); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--accent); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }

/* ─── SECTIONS ─── */
.section-title { font-size: 24px; font-family: 'Playfair Display', serif; margin-bottom: 25px; border-left: 5px solid var(--accent); padding-left: 15px; text-transform: uppercase; }

/* FULL WIDTH GRID */
.full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 50px; }
.full-hero { grid-column: span 2; grid-row: span 2; }

/* SIDEBAR LAYOUT */
.layout-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 40px; margin-bottom: 60px; }

/* CARDS */
.card { background: #fff; border: 1px solid var(--border); overflow: hidden; height: 100%; transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 25px rgba(220, 38, 38, 0.08); }
.card-img { height: 200px; background: #000; position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px; }
.card-category { font-size: 10px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: block; }
.card-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.card-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 10px; }

/* HERO BIG CARD */
.hero-big-card { position: relative; height: 100%; min-height: 420px; background: #000; }
.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: #fff; }
.hero-overlay h1 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 900; margin-bottom: 15px; }

/* SIDEBAR WIDGETS */
.widget { margin-bottom: 40px; border: 1px solid var(--border); padding: 25px; background: var(--bg2); }
.widget-title { font-size: 16px; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 10px; }

/* ─── POST DETAIL PAGE ─── */
.post-detail-header { padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border); margin-bottom: 50px; }
.post-detail-cat { font-size: 11px; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; display: block; }
.post-detail-title { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; line-height: 1.1; margin: 0 auto 30px; max-width: 900px; color: var(--bg3); }
.post-detail-meta { display: flex; justify-content: center; gap: 30px; font-size: 13px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }
.post-detail-meta span b { color: var(--text); }

.post-detail-hero { width: 100%; height: 550px; margin-bottom: 50px; border-radius: var(--radius); overflow: hidden; background: #000; }
.post-detail-hero img { width: 100%; height: 100%; object-fit: cover; }

.post-content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; padding-bottom: 80px; }
.post-article-body { font-family: 'Outfit', sans-serif; font-size: 20px; line-height: 1.8; color: #333; }
.post-article-body p { margin-bottom: 25px; }
.post-article-body h2, .post-article-body h3 { font-family: 'Playfair Display', serif; margin: 40px 0 20px; color: var(--bg3); }
.post-article-body blockquote { border-left: 5px solid var(--accent); padding: 20px 30px; margin: 40px 0; background: var(--accent-soft); font-style: italic; font-size: 24px; font-family: 'Playfair Display', serif; color: var(--accent); }

.share-strip { display: flex; gap: 15px; margin: 40px 0; padding: 20px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.share-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #f3f4f6; color: #4b5563; font-size: 16px; transition: all 0.2s; }
.share-btn:hover { background: var(--accent); color: #fff; }

.related-section { margin-top: 40px; padding: 60px 0; border-top: 1px solid var(--border); background: var(--bg2); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 30px; }

/* ─── FOOTER ─── */
footer { background: var(--bg3); color: #fff; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 30px; text-align: center; font-size: 13px; color: #888; }
