/* ===================================================
   OILERS FRONTIER — style.css
   Theme: Deep Forest Green + Steel Grey + Gold/Yellow
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:    #1a2e1a;
  --green-mid:     #243d24;
  --green-light:   #2f5230;
  --green-accent:  #3a6b3c;
  --steel-dark:    #1c2028;
  --steel-mid:     #252c36;
  --steel-light:   #2e3847;
  --steel-border:  #3a4556;
  --gold:          #d4a017;
  --gold-bright:   #f0b932;
  --gold-pale:     #f5d06e;
  --cream:         #f2ead8;
  --text-primary:  #e8e0d0;
  --text-secondary:#a8b0b8;
  --text-muted:    #68788a;
  --card-bg:       #1e2a1e;
  --card-border:   #2e4530;
  --shadow-deep:   rgba(0,0,0,0.6);
  --shadow-gold:   rgba(212,160,23,0.25);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     12px;
  --transition:    0.25s ease;
  --font-head:     'Oswald', sans-serif;
  --font-body:     'Roboto', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--steel-dark);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }

img { max-width: 100%; display: block; }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
}
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}
.tag-exploration  { background: #1a3d2e; color: #4fcf8a; border: 1px solid #2a5a42; }
.tag-production   { background: #2e2218; color: #e8a030; border: 1px solid #4a3520; }
.tag-markets      { background: #1a2840; color: #4ab0f0; border: 1px solid #243858; }
.tag-pipeline     { background: #2a1a2e; color: #b870e8; border: 1px solid #3d2550; }
.tag-technology   { background: #1c2e1a; color: #70d870; border: 1px solid #2a4a28; }
.tag-regulations  { background: #2e1a1a; color: #e87070; border: 1px solid #4a2828; }
.tag-lng          { background: #182a30; color: #40d4d4; border: 1px solid #204040; }
.tag-offshore     { background: #1a2040; color: #6090e8; border: 1px solid #2a3460; }

/* ── Breaking News Ticker ── */
.ticker-bar {
  background: var(--green-deep);
  border-bottom: 2px solid var(--gold);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.ticker-inner { display: flex; align-items: center; gap: 0; }
.ticker-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel-dark);
  background: var(--gold);
  padding: 2px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 16px;
}
.ticker-track {
  display: flex;
  animation: ticker-scroll 45s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 0.82rem;
  color: var(--cream);
  padding-right: 48px;
  letter-spacing: 0.3px;
}
.ticker-item::before { content: '◆ '; color: var(--gold); font-size: 0.6rem; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header / Navbar ── */
.site-header {
  background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-mid) 100%);
  border-bottom: 1px solid var(--steel-border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 4px 20px var(--shadow-deep);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 46px; height: 46px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(212,160,23,0.08);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-search {
  display: flex;
  align-items: center;
  background: var(--steel-mid);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  gap: 8px;
}
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.82rem;
  width: 160px;
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search svg { color: var(--text-muted); width: 14px; height: 14px; }
.btn-subscribe {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--steel-dark);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--gold-bright); color: var(--steel-dark); transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: var(--transition);
}

/* ── Date Bar ── */
.date-bar {
  background: var(--steel-mid);
  border-bottom: 1px solid var(--steel-border);
  padding: 6px 0;
}
.date-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-muted);
}
.date-bar-left { display: flex; align-items: center; gap: 16px; }
.date-bar span { letter-spacing: 0.5px; }
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4fcf8a;
  font-size: 0.72rem;
}
.live-dot::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: #4fcf8a;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── Hero Section ── */
.hero-section { padding: 32px 0 24px; background: var(--green-deep); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

/* Featured Article */
.hero-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  box-shadow: 0 8px 32px var(--shadow-deep);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}
.hero-featured-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-featured-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10,18,10,0.97) 0%, rgba(10,18,10,0.7) 40%, rgba(10,18,10,0.1) 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="440" viewBox="0 0 400 440"><defs><radialGradient id="g1" cx="50%" cy="60%" r="70%"><stop offset="0%" stop-color="%231a3d20" stop-opacity="0.6"/><stop offset="100%" stop-color="%230a120a" stop-opacity="0"/></radialGradient></defs><rect width="400" height="440" fill="%230d1a0d"/><rect x="0" y="0" width="400" height="440" fill="url(%23g1)"/><line x1="195" y1="50" x2="195" y2="250" stroke="%23d4a017" stroke-width="3" opacity="0.5"/><polygon points="195,50 215,90 175,90" fill="%23d4a017" opacity="0.4"/><rect x="175" y="90" width="40" height="160" fill="%232a4a2a" opacity="0.6"/><rect x="160" y="240" width="70" height="15" fill="%23243d24" opacity="0.8"/><line x1="185" y1="130" x2="175" y2="170" stroke="%23d4a017" stroke-width="2" opacity="0.4"/><line x1="205" y1="130" x2="215" y2="170" stroke="%23d4a017" stroke-width="2" opacity="0.4"/></svg>') center center / cover no-repeat;
}
.hero-featured-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
}
.hero-featured-content .tag { margin-bottom: 12px; }
.hero-featured-content h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-featured-content .excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.article-meta .author { color: var(--gold-pale); font-weight: 500; }
.article-meta .divider { opacity: 0.4; }

/* Hero Sidebar Stack */
.hero-sidebar-stack { display: flex; flex-direction: column; gap: 16px; }
.hero-side-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.hero-side-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.hero-side-card:hover {
  border-color: var(--green-accent);
  transform: translateX(4px);
  box-shadow: -4px 0 16px rgba(212,160,23,0.1);
}
.hero-side-card:hover::before { transform: scaleY(1); }
.hero-side-card .tag { margin-bottom: 8px; }
.hero-side-card h3 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.hero-side-card:hover h3 { color: var(--gold-pale); }
.hero-side-card .excerpt {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ── Price Widget ── */
.price-widget {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow-deep);
}
.price-widget-header {
  background: var(--green-mid);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--card-border);
}
.price-widget-header span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.price-widget-header small {
  font-size: 0.65rem;
  color: var(--text-muted);
}
.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(58,69,86,0.4);
  transition: background var(--transition);
}
.price-item:last-child { border-bottom: none; }
.price-item:hover { background: rgba(42,61,42,0.3); }
.price-label { display: flex; flex-direction: column; }
.price-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}
.price-sub { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.3px; }
.price-data { display: flex; flex-direction: column; align-items: flex-end; }
.price-value {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}
.price-change {
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2px;
}
.price-change.up { color: #4fcf8a; }
.price-change.down { color: #f07070; }

/* ── Main Layout ── */
.main-content { padding: 32px 0 48px; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* ── News Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.news-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-deep), 0 0 0 1px var(--green-accent);
  border-color: var(--green-accent);
}
.news-card-thumb {
  height: 160px;
  overflow: hidden;
  position: relative;
  background: var(--green-mid);
  flex-shrink: 0;
}
.news-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--steel-mid) 100%);
}
.news-card-thumb-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}
.news-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-body .tag { margin-bottom: 10px; }
.news-card-body h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color var(--transition);
  flex: 1;
}
.news-card:hover h2 { color: var(--gold-pale); }
.news-card-body .excerpt {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(58,69,86,0.4);
  margin-top: auto;
}
.news-card-footer .date { font-size: 0.7rem; color: var(--text-muted); }
.news-card-footer .read-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.read-more-link {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.read-more-link::after { content: '→'; }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

/* Sidebar boxes */
.sidebar-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sidebar-box-header {
  background: var(--green-mid);
  padding: 10px 16px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-box-header svg { width: 14px; height: 14px; }

/* Breaking news list */
.breaking-list { list-style: none; }
.breaking-item {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(58,69,86,0.3);
  cursor: pointer;
  transition: background var(--transition);
}
.breaking-item:last-child { border-bottom: none; }
.breaking-item:hover { background: rgba(42,61,42,0.3); }
.breaking-item h4 {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.breaking-item:hover h4 { color: var(--gold-pale); }
.breaking-item .meta { font-size: 0.68rem; color: var(--text-muted); }

/* Popular tags */
.tag-cloud { padding: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud-item {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--steel-mid);
  border: 1px solid var(--steel-border);
  border-radius: 20px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.tag-cloud-item:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: var(--gold-pale);
}

/* Newsletter */
.newsletter-box { padding: 20px 16px; }
.newsletter-box p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.6;
}
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input {
  background: var(--steel-mid);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text-primary);
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
  background: var(--gold);
  color: var(--steel-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-bright); }

/* ── Topic Strip ── */
.topic-strip {
  background: var(--green-mid);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 28px 0;
  margin-bottom: 32px;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.topic-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.topic-card:hover {
  background: var(--green-accent);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.topic-card svg { width: 28px; height: 28px; color: var(--gold); }
.topic-card span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.topic-card:hover span { color: var(--gold-pale); }

/* ── Pagination ── */
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.page-btn {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--green-accent);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Footer ── */
.site-footer {
  background: var(--green-deep);
  border-top: 2px solid var(--gold);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about .logo-wrap { margin-bottom: 16px; }
.footer-about p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--steel-mid);
  border: 1px solid var(--steel-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--green-accent);
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-pale); }
.footer-bottom {
  border-top: 1px solid var(--steel-border);
  padding: 18px 20px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Article Page ── */
.article-header {
  background: var(--green-deep);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--card-border);
}
.article-header-inner { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.article-header .tag { margin-bottom: 16px; }
.article-header h1 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-header .article-meta { margin-bottom: 0; }
.article-body-wrap { max-width: 820px; margin: 0 auto; padding: 48px 20px; }
.article-body { font-size: 1.02rem; line-height: 1.85; color: var(--text-secondary); }
.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 32px 0 16px;
}
.article-body p { margin-bottom: 18px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: var(--card-bg);
  margin: 24px 0;
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar-stack { flex-direction: row; flex-wrap: wrap; }
  .hero-side-card { flex: 1 1 280px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .price-widget { display: grid; grid-template-columns: repeat(3, 1fr); }
  .price-widget .price-widget-header { grid-column: 1/-1; }
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .header-search { display: none; }
  .menu-toggle { display: block; }
  .logo-name { font-size: 1.3rem; }
  .hero-featured-content h1 { font-size: 1.5rem; }
  .news-grid { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .price-widget { display: block; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--steel-dark); }
::-webkit-scrollbar-thumb { background: var(--steel-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-accent); }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--steel-dark); }
