/* ═══════════════════════════════════════════════════════════════
   SHEELTRON — Article / Blog Template
   Shared across all /news/*.html detail pages.
   Pairs with the global ../styles.css for tokens/nav/footer.
   ═══════════════════════════════════════════════════════════════ */

.article-page{
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 32px 100px;
}

.article-hero-image{
  margin: 0 0 48px;
  aspect-ratio: 2 / 1;
  background: var(--bg-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.article-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-back{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 56px;
  transition: color .2s, transform .2s;
}
.article-back:hover{ color: var(--accent); transform: translateX(-3px); }
.article-back::before{ content: "←"; font-size: 16px; line-height: 1; }

.article-hero{
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.article-hero .news-meta{
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.article-hero .news-tag{
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  background: rgba(229,57,53,.08);
  padding: 5px 12px;
  border-radius: 100px;
}
.article-hero .news-date{
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}
.article-hero h1{
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #fff;
}
.article-lede{
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  margin: 0;
}

.article-body{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
}
.article-body > * + *{ margin-top: 24px; }
.article-body h2{
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  letter-spacing: -.8px;
  line-height: 1.25;
  color: #fff;
  margin-top: 48px;
}
.article-body h3{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.3px;
  color: #fff;
  margin-top: 36px;
}
.article-body p{ margin: 0; }
.article-body p strong,
.article-body li strong{ color: rgba(255,255,255,.92); font-weight: 600; }
.article-body em{ color: rgba(255,255,255,.85); font-style: italic; }

.article-body ul,
.article-body ol{
  padding-left: 24px;
  margin: 0;
}
.article-body li + li{ margin-top: 10px; }
.article-body li{ padding-left: 4px; }

.article-body a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(229,57,53,.3);
  transition: border-color .2s, color .2s;
}
.article-body a:hover{
  color: var(--accent-light);
  border-bottom-color: var(--accent-light);
}

.article-quote{
  margin: 40px 0;
  padding: 28px 32px;
  background: rgba(229,57,53,.03);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
  color: rgba(255,255,255,.88);
}
.article-quote cite{
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.article-source{
  margin-top: 64px !important;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.article-source a{
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.article-source a:hover{
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 640px){
  .article-page{ padding: 100px 20px 60px; }
  .article-hero{ margin-bottom: 40px; padding-bottom: 32px; }
  .article-hero h1{ letter-spacing: -1px; }
  .article-quote{ padding: 22px 24px; font-size: 17px; }
}
