/* ===== Newspaper-style RTI Press Note | Theme: #F4D38F, White, Black ===== */
:root{
  --ink: #000;                 /* black text */
  --paper: #ffffff;            /* white cards */
  --accent: #F4D38F;           /* your sand-gold */
  --muted: #222;               /* dark gray for body */
  --radius: 14px;
  --shadow: 0 20px 40px rgba(0,0,0,.12);
}

*{ box-sizing: border-box }
html, body { height: 100% }
body{
  margin: 0;
  color: var(--muted);
  background:
    linear-gradient(180deg, var(--accent) 0%, #f7e4b7 38%, #fff 38%) fixed; /* warm masthead band */
  font-family: "Merriweather", Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

/* Layout */
.container{ width: min(1100px, 92vw); margin: 0 auto; }
.section{ padding: clamp(18px, 3.2vw, 28px) 0; }

/* Top image */
.hero-image{ margin: 0; }
.hero-image img{
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}

/* Headline area */
.masthead{ padding: 28px 0 10px; }
.headline{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 1.15;
  margin: 0 0 10px;
  text-wrap: balance;
}
.strap{
  margin: 0;
  font-style: italic;
  background: var(--paper);
  border-left: 6px solid var(--accent);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Typography */
.lead{ font-size: clamp(1rem, 1.7vw, 1.125rem); color: var(--muted); background: var(--paper); padding: 16px 18px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Images */
.photo, .photo-wide{
  margin: 0;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.photo img, .photo-wide img{ width: 100%; height: 100%; display: block; object-fit: cover; }
.photo figcaption, .photo-wide figcaption{
  padding: 10px 12px;
  font-size: .92rem;
  color: #000;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Two-up grid */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2.4vw, 20px);
}

/* Points */
.points .subhead{
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 8px;
  color: var(--ink);
}
.points ul{
  margin: 0;
  padding: 14px 18px 14px 28px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.points li{ margin: 6px 0; }

/* Final wide photos keep pleasing ratio */
.photo-wide img{ aspect-ratio: 16/9; }

/* Responsiveness */
@media (max-width: 900px){
  .grid-2{ grid-template-columns: 1fr; }
  .hero-image img{ aspect-ratio: 3/2; }
}
@media (max-width: 520px){
  body{ line-height: 1.7; }
  .strap{ border-left-width: 4px; }
}

/* Optional: print friendly */
@media print{
  body{ background: #fff; }
  .strap, .lead, .photo, .photo-wide, .points ul{ box-shadow: none; }
}
