/* Beta (Editorial Luxury) — component overrides.
   Keep minimal — most styling lives in style-base.css.
   This file handles edge cases and print styles. */

/* Strong text in section bodies */
.ed-section-body strong { color: var(--white); }

/* Warning/info boxes in content */
.ed-section-body blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--sp-4) var(--sp-6);
  margin: var(--sp-6) 0;
  background: rgba(241,172,51,0.04);
  color: var(--text);
  font-style: normal;
}

/* Emoji suppression — editorial design avoids emoji in headings */
.ed-section-title { font-variant-emoji: text; }

/* Print */
@media print {
  .ed-header, .ed-drawer, .ed-footer-18, .ed-inline-cta,
  .ed-hero-ctas, .ed-banner-ctas { display: none; }
  .ed-main { padding-top: 0; }
  body { color: #000; background: #fff; }
  .ed-article-section, .ed-section-alt { background: #fff; }
}
