/* News section — editorial layout.
   Follows brand colors from assets/v1.css:
     --rd-orange: #9a3d1f (rust)
     --rd-slate:  #16232a
     --rd-paper:  #f6f6f6

   Two page types:
   1. Index (/news/) — featured card + grid
   2. Article (/news/<slug>/) — hero + narrow reading column
*/

body.news { background: #f6f6f6; }

/* --- Index page --------------------------------------------------- */

.news-index-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px 24px;
  text-align: center;
}
.news-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a3d1f;
  margin: 0 0 16px;
}
.news-index-title {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 18px;
  color: #16232a;
}
.news-index-lede {
  font-size: 17px;
  line-height: 1.55;
  color: #555;
  max-width: 620px;
  margin: 0 auto;
}

.news-divider {
  max-width: 1200px;
  margin: 40px auto 0;
  border-top: 1px solid #d4d4d4;
}

.news-cards {
  max-width: 1200px;
  margin: 0 auto 96px;
  padding: 44px 40px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}
@media (max-width: 780px) {
  .news-cards { grid-template-columns: 1fr; gap: 40px; padding: 32px 24px 0; }
}

.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.news-card--featured { grid-column: 1 / -1; }

.news-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd;
  margin-bottom: 20px;
}
.news-card--featured .news-card-image { aspect-ratio: 16 / 8; }
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-image img { transform: scale(1.03); }

.news-card-meta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a3d1f;
  margin: 0 0 10px;
}
.news-card-title {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 12px;
  color: #16232a;
}
.news-card--featured .news-card-title {
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.015em;
}
.news-card-excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  margin: 0 0 14px;
}
.news-card--featured .news-card-excerpt {
  font-size: 18px;
  max-width: 720px;
}
.news-card-byline {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: auto;
}

/* --- Article page ------------------------------------------------- */

.article-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 20px;
  text-align: center;
}
.article-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9a3d1f;
  margin: 0 0 24px;
}
.article-title {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0 0 28px;
  color: #16232a;
}
.article-lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
  color: #444;
  max-width: 640px;
  margin: 0 auto;
}

.article-meta {
  max-width: 640px;
  margin: 40px auto 0;
  padding: 20px 24px;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
}
.article-meta strong { color: #16232a; font-weight: 600; }
.article-meta .sep { color: #ccc; }

/* Source note — prominent link back to canonical published version.
   Sits between .article-meta and .article-hero. Two uses:
   1. Aubrey's essay -> Orivon Wellness (where it was first published)
   2. Coverage pieces -> the source publication */
.article-source-note {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 20px 28px;
  background: #fff;
  border-left: 3px solid #9a3d1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-source-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a3d1f;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}
.article-source-label strong {
  display: block;
  color: #16232a;
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 4px;
  font-weight: 500;
}
.article-source-link {
  display: inline-block;
  background: #9a3d1f;
  color: #fff !important;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
  font-weight: 500;
  white-space: nowrap;
}
.article-source-link:hover { background: #7a2e15; }

.article-hero {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-hero-caption {
  font-size: 13px;
  color: #666;
  margin-top: 14px;
  padding: 0 4px;
  font-style: italic;
  line-height: 1.5;
}

.article-body {
  max-width: 640px;
  margin: 60px auto 60px;
  padding: 0 24px;
  font-size: 19px;
  line-height: 1.72;
  color: #222;
}
.article-body p { margin: 0 0 24px; }
.article-body p:first-child::first-letter {
  font-size: 3.2em;
  float: left;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  color: #9a3d1f;
  font-weight: 500;
}
.article-body h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 48px 0 20px;
  letter-spacing: -0.005em;
  color: #16232a;
  font-weight: 500;
}
.article-body a {
  color: #9a3d1f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body blockquote {
  border-left: 3px solid #9a3d1f;
  margin: 40px 0;
  padding: 8px 0 8px 32px;
  font-size: 22px;
  line-height: 1.4;
  font-style: italic;
  color: #16232a;
}
.article-body blockquote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  color: #666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
}
.article-body .pull-quote {
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  margin: 60px auto;
  padding: 40px 0;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  color: #16232a;
  font-style: normal;
}

.article-attribution {
  max-width: 640px;
  margin: 0 auto 100px;
  padding: 32px 28px;
  background: #fff;
  border-left: 3px solid #9a3d1f;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
}
.article-attribution-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a3d1f;
  margin-bottom: 10px;
  font-weight: 600;
}
.article-attribution p { margin: 0 0 10px; }
.article-attribution p:last-child { margin-bottom: 0; }
.article-attribution a { color: #9a3d1f; }

/* Press card layout (coverage type) */
.press-card {
  max-width: 720px;
  margin: 40px auto 60px;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid #d4d4d4;
}
.press-card-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a3d1f;
  margin: 0 0 16px;
  font-weight: 600;
}
.press-card-headline {
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 18px;
  color: #16232a;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.press-card-publication {
  font-size: 13px;
  color: #555;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.press-card-publication strong { color: #16232a; }
.press-card-excerpt {
  font-size: 17px;
  line-height: 1.55;
  color: #333;
  border-left: 3px solid #9a3d1f;
  padding-left: 20px;
  margin: 0 0 28px;
  font-style: italic;
}
.press-card-cta {
  display: inline-block;
  background: #9a3d1f;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s;
  font-weight: 500;
}
.press-card-cta:hover { background: #7a2e15; color: #fff; }

/* Continue reading (related articles) */
.article-continue {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 60px 40px 0;
  border-top: 1px solid #d4d4d4;
}
.article-continue-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a3d1f;
  margin: 0 0 28px;
  font-weight: 600;
}
.article-continue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 780px) {
  .article-continue-grid { grid-template-columns: 1fr; }
  .article-continue { padding: 40px 24px 0; }
}
