/* ─── Fonts (loaded via <link> in HTML) ─── */
/* Barlow Condensed 600/700 — headlines, page titles */
/* Lora 400/400i/700 — body text, stories */
/* Inter 400/500/600 — nav, UI, metadata */

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

/* ─── Custom Properties ─── */
:root {
  --crimson: #8B0000;
  --crimson-dark: #6A0000;
  --crimson-light: #FEF2F2;
  --ink: #111;
  --text: #374151;
  --muted: #6B7280;
  --surface: #F5F5F4;
  --white: #fff;
  --rule: #E5E7EB;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 6px;
  --ease: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--crimson);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
}

/* ─── Base ─── */
body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--crimson);
  text-decoration: none;
  transition: color var(--ease);
}

a:hover {
  color: var(--crimson-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── Header ─── */
.site-header {
  background: var(--crimson);
  color: var(--white);
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 16px;
}

.header-logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.site-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.site-title:hover {
  text-decoration: none;
  opacity: 0.92;
}

/* ─── Navigation ─── */
nav {
  background: var(--crimson-dark);
  position: relative;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav > .nav-inner > ul > li {
  position: relative;
}

nav a {
  color: rgba(255,255,255,0.9);
  display: block;
  padding: 12px 18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--ease), color var(--ease);
}

nav a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}

nav a.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ─── Dropdowns ─── */
.dropdown > a::after {
  content: ' \25BE';
  font-size: 0.65em;
  opacity: 0.7;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--crimson-dark);
  min-width: 240px;
  z-index: 100;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--ease), transform var(--ease), visibility 0s 0.25s;
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity var(--ease), transform var(--ease), visibility 0s;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu a {
  padding: 10px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.84rem;
  white-space: nowrap;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* ─── Hamburger Toggle ─── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}

nav.open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

nav.open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero (Homepage) ─── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 820px;
}

.hero-content h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  margin-top: 16px;
  font-weight: 400;
}

/* ─── Stats Bar ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 3px solid var(--crimson);
}

.stat {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid var(--rule);
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Main Content ─── */
.page-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.page-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--crimson);
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 700px;
}

/* ─── Homepage Layout ─── */
.home-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.home-main h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.home-main p {
  margin-bottom: 16px;
}

/* ─── Sidebar ─── */
.sidebar {
  background: var(--white);
  padding: 28px;
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sidebar h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  color: var(--crimson);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.sidebar p {
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.sidebar-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

/* ─── Blockquotes ─── */
blockquote {
  border-left: 4px solid var(--crimson);
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--crimson-light);
  font-style: italic;
  color: var(--text);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--crimson);
}

.highlight-quote {
  text-align: center;
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--crimson);
  font-style: italic;
  margin: 40px 0;
  padding: 28px 24px;
  border-top: 3px solid var(--crimson);
  border-bottom: 3px solid var(--crimson);
  background: var(--crimson-light);
  border-radius: var(--radius);
  line-height: 1.6;
}

.highlight-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--muted);
}

/* ─── Image Row ─── */
.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0 36px;
}

.image-row img {
  flex: 1 1 200px;
  max-width: 340px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ─── Hero Image (non-homepage) ─── */
.hero-image {
  width: 100%;
  max-width: 920px;
  height: auto;
  display: block;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  margin: 20px 0;
  box-shadow: var(--shadow-sm);
}

/* ─── Page Intro with Image ─── */
.page-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  margin-bottom: 40px;
  align-items: start;
}

.page-intro-text p {
  margin-bottom: 14px;
}

.page-intro img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ─── Award Entries ─── */
.award-entry {
  padding: 24px;
  border-bottom: 1px solid var(--rule);
  border-left: 4px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}

.award-entry:hover {
  border-left-color: var(--crimson);
  background: var(--crimson-light);
}

.award-entry:last-child {
  border-bottom: none;
}

.award-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--crimson);
  color: #fff;
  width: 34px;
  height: 34px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  margin-right: 12px;
  border-radius: var(--radius);
  flex-shrink: 0;
  vertical-align: middle;
}

.award-entry p {
  margin: 8px 0;
  line-height: 1.7;
}

.award-source {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.award-source a {
  color: var(--crimson);
  font-weight: 500;
}

/* ─── Image Break (interspersed in awards) ─── */
.image-break {
  margin: 36px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-break img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.image-break-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.image-break-split img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Awards with side image */
.award-with-image {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  margin: 36px 0;
  align-items: start;
}

.award-with-image.image-left {
  grid-template-columns: 320px 1fr;
}

.award-with-image img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ─── Story Grid (card layout for patient-stories page) ─── */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.story-card-v2 {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

.story-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-card-v2 .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.story-card-v2 .card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-card-v2 .card-number {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.story-card-v2 h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--crimson);
  margin-bottom: 10px;
}

.story-card-v2 h2 a {
  color: inherit;
}

.story-card-v2 h2 a:hover {
  text-decoration: none;
  color: var(--crimson-dark);
}

.story-card-v2 p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-v2 .read-more {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--crimson);
  align-self: flex-start;
}

.story-card-v2 .read-more:hover {
  text-decoration: none;
  color: var(--crimson-dark);
}

/* ─── Featured Stories Section (homepage bottom) ─── */
.featured-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 3px solid var(--crimson);
}

.featured-section > h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.featured-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}

.featured-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.featured-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.featured-card .card-body {
  padding: 20px;
}

.featured-card h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.featured-card h3 a {
  color: var(--crimson);
}

.featured-card h3 a:hover {
  text-decoration: none;
  color: var(--crimson-dark);
}

.featured-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.featured-section .view-all {
  display: block;
  text-align: center;
  margin-top: 28px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ─── Story Detail Pages ─── */
.story-hero {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: var(--radius);
  margin-bottom: 36px;
  box-shadow: var(--shadow);
}

.story-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.story-content {
  max-width: none;
}

.story-content p {
  margin-bottom: 18px;
}

.story-sidebar {
  position: sticky;
  top: 24px;
}

.story-sidebar-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.more-stories h3 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--crimson);
}

.more-stories ul {
  list-style: none;
}

.more-stories li {
  margin-bottom: 0;
}

.more-stories a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--crimson);
  transition: padding-left var(--ease), color var(--ease);
}

.more-stories a:hover {
  padding-left: 8px;
  color: var(--crimson-dark);
  text-decoration: none;
}

.pull-quote {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--crimson);
  border-left: 4px solid var(--crimson);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--crimson-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.5;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--crimson);
}

.back-link:hover {
  color: var(--crimson-dark);
  text-decoration: none;
}

/* Legacy story cards (keep for backwards compat) */
.story-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--rule);
  border-left: 4px solid transparent;
  align-items: start;
  transition: border-color var(--ease), background var(--ease);
}

.story-card:hover {
  border-left-color: var(--crimson);
  background: var(--crimson-light);
}

.story-card.has-image {
  grid-template-columns: 48px 150px 1fr;
}

.story-number {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--crimson);
  text-align: center;
  line-height: 1;
  padding-top: 4px;
}

.story-thumb {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.story-card h2 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--crimson);
  margin-bottom: 8px;
}

.story-card h2 a {
  color: var(--crimson);
  transition: color var(--ease);
}

.story-card h2 a:hover {
  color: var(--crimson-dark);
  text-decoration: none;
}

.story-card p {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.story-card .read-more {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--crimson);
}

.story-card .read-more:hover {
  color: var(--crimson-dark);
  text-decoration: none;
}

/* ─── References / Resources ─── */
.reference-list {
  list-style: none;
}

.reference-list li {
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  border-left: 4px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}

.reference-list li:hover {
  border-left-color: var(--crimson);
  background: var(--crimson-light);
}

.reference-list li a {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

.reference-list li p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 40px 24px;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a {
  color: #f9a8a8;
  transition: color var(--ease);
}

.site-footer a:hover {
  color: #fff;
  text-decoration: none;
}

.share-message {
  margin-top: 16px;
  font-style: italic;
  font-size: 0.82rem;
  opacity: 0.75;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav .nav-inner > ul {
    display: none;
    flex-direction: column;
  }

  nav.open .nav-inner > ul {
    display: flex;
  }

  nav a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .dropdown-menu a {
    padding-left: 44px;
  }

  .home-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sidebar {
    border-left: none;
    border-top: 4px solid var(--crimson);
  }

  .header-inner {
    flex-direction: column;
    text-align: center;
    padding: 12px 16px;
  }

  .site-title {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 280px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .page-content {
    padding: 28px 16px 60px;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 20px 16px;
  }

  .stat:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 2rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .award-with-image,
  .award-with-image.image-left {
    grid-template-columns: 1fr;
  }

  .image-break-split {
    grid-template-columns: 1fr;
  }

  .page-intro {
    grid-template-columns: 1fr;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-sidebar {
    position: static;
  }

  .story-hero {
    height: 200px;
  }

  .image-row img {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .award-entry {
    padding: 20px 16px;
  }

  .reference-list li {
    padding: 16px;
  }

  .story-card {
    grid-template-columns: 36px 1fr;
    padding: 20px 16px;
  }

  .story-card.has-image {
    grid-template-columns: 36px 1fr;
  }

  .story-thumb {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 240px;
  }

  .page-title {
    font-size: 1.3rem;
  }
}
