/* ---------------------------
   PREMIUM NEWSLETTER THEME
----------------------------*/
:root{
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #1f2a37;
  --muted: #5b6b7a;

  --brand: #0a5ca8;
  --brand-2: #0f7bdc;
  --accent: #12b981; /* used sparingly */
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.10);

  --radius: 18px;
  --radius-sm: 14px;
  --border: 1px solid rgba(15, 23, 42, 0.08);

  --container: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 400px at 10% -10%, rgba(15,123,220,.16), transparent 60%),
    radial-gradient(900px 400px at 90% 10%, rgba(18,185,129,.10), transparent 50%),
    var(--bg);
}

/* UTIL */
.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section{ padding: 56px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(10,92,168,.06), rgba(15,123,220,.04));
  border-top: var(--border);
  border-bottom: var(--border);
}
.card{
  background: var(--card);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
h1, h2, h3{ letter-spacing: -0.02em; }
p{ color: var(--muted); line-height: 1.75; }
strong{ color: var(--text); }

.section-head{ margin-bottom: 18px; }
.section-head h2{
  margin: 0;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  color: var(--text);
}
.section-head p{
  margin: 8px 0 14px;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--muted);
}


/* TOPBAR */
.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245,247,251,.7);
  backdrop-filter: blur(10px);
  border-bottom: var(--border);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand-mark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 18px rgba(10,92,168,.25);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-logo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-text strong{ display:block; line-height: 1.05; }
.brand-text span{
  display:block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}
.topbar-actions{ display:flex; gap: 10px; }

/* BUTTONS + CHIPS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 26px rgba(10,92,168,.25);
  font-weight: 650;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 18px 30px rgba(10,92,168,.30); }

.btn-ghost{
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(10,92,168,.25);
  box-shadow: none;
}
.btn-ghost:hover{ transform: translateY(-1px); }

.btn-small{ padding: 10px 14px; font-weight: 650; }

.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 650;
  border: 1px solid rgba(10,92,168,.25);
  color: var(--brand);
  background: rgba(10,92,168,.06);
}
.chip-ghost{ background: transparent; }
.chip-solid{
  border: 1px solid rgba(15,23,42,.08);
  color: var(--text);
  background: rgba(15,23,42,.03);
}
.chips{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* HERO */
.hero{
  position: relative;
  min-height: 420px; /* reduced to fit smaller */
  overflow: hidden;
  border-bottom: var(--border);
}
.hero-media{
  position:absolute;
  inset:0;
  /* gradient kept as fallback; actual slides are img children */
  background: linear-gradient(120deg, rgba(10,92,168,.25), rgba(15,123,220,.18));
  z-index: 0;
}
.hero-media img.hero-slide{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .8s ease, transform .6s ease;
  transform: scale(1.02);
}
.hero-media img.hero-slide.active{ opacity: 1; transform: scale(1.03); }
.hero-overlay{
  position: absolute;
  inset: 0;
  display:flex;
  align-items:center;
  padding: 48px 0; /* slightly smaller padding */
  z-index: 2;
}
.hero-overlay::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(3,78,162,0.55), rgba(3,78,162,0.45));
  pointer-events: none;
  z-index: 1;
}
.hero-content{ color: #fff; position: relative; z-index: 3; }
.kicker{
  display:inline-block;
  margin:0 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.92);
  font-weight: 650;
  letter-spacing: .02em;
}
.hero h1{
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  line-height: 1.08;
}
.lede{
  margin: 14px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
}
.hero-cta{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  max-width: 980px;
}
.meta-item{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 14px 16px;
}
.meta-title{
  display:block;
  font-size: .82rem;
  color: rgba(255,255,255,.78);
}
.meta-value{
  display:block;
  margin-top: 4px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
}

/* INTRO */
.intro{
  padding: 26px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
.intro h2{ margin: 0 0 8px; }
.intro-side{ display:grid; gap: 12px; }
.mini-card{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(10,92,168,.05), rgba(255,255,255,.6));
}
.mini-title{ margin:0; font-size: .85rem; color: var(--muted); }
.mini-value{ margin: 6px 0 0; font-weight: 750; color: var(--text); }

/* LAYOUT GRIDS */
.grid{ display:grid; gap: 18px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stack{ display:flex; flex-direction: column; gap: 18px; }

/* FEATURE CARDS */
.feature{
  padding: 22px;
  display:flex;
  gap: 14px;
}
.feature h3{ margin: 0 0 8px; color: var(--text); }
.feature-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(10,92,168,.08);
  border: 1px solid rgba(10,92,168,.18);
  color: var(--brand);
  font-size: px;
  flex: 0 0 auto;
}

.feature-avatar{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.note{
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(18,185,129,.08);
  border: 1px solid rgba(18,185,129,.22);
  border-radius: 14px;
  color: #1f3b33;
}

/* small round avatar used inside .note paragraphs */
.note-avatar{
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  display: inline-block;
}

/* CALLOUT */
.callout{ padding: 0; overflow: hidden; }
.callout-strip{
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.callout-strip img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.callout-strip img{
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  transform-origin: center center;
}
.callout-strip:hover img,
.callout-strip:focus-within img{ transform: scale(1.06); }
@media (hover: none){
  .callout-strip img{ transition: none; transform: none; }
}
.callout-content{
  padding: 24px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 20px;
  align-items: start;
}
.callout-left h3{ margin-top: 0; }
@media (max-width: 900px){
  .callout-strip{ height: 180px; }
  .callout-content{ grid-template-columns: 1fr; }
}
.callout h3{ margin: 0 0 8px; }
.pill{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(15,23,42,.02);
}
.pill-k{ font-weight: 800; color: var(--brand); width: 54px; }
.pill-v{ font-weight: 650; color: var(--text); }

/* MEDIA CARD */
.media-card{
  padding: 0;
  overflow:hidden;
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
}
.media{
  position: relative;
  min-height: 280px;
  background: rgba(15,23,42,.04);
}
.media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.media img{
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  transform-origin: center center;
}
.media:hover img,
.media:focus-within img{ transform: scale(1.06); }
@media (hover: none){
  .media img{ transition: none; transform: none; }
}
.tag{
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.10);
  color: var(--brand);
  font-weight: 800;
}
.media-body{ padding: 22px; }
.media-body h3{ margin: 0 0 8px; color: var(--text); }

/* TILE */
.tile{ padding: 0; overflow:hidden; }
.tile img{
  width: 100%;
  height: 400px; /* keep your current size */
  object-fit: cover;
  display:block;
  transition: transform .4s ease;
}
.tile:hover img{ transform: scale(1.04); }
.tile-body{ padding: 18px 20px 22px; }
.tile-body h3{ margin: 0 0 8px; color: var(--text); }

/* STATS */
.stats .stat{ padding: 20px; }
.stat-k{
  margin:0;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 650;
}
.stat-v{
  margin: 6px 0 0;
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.stat-n{ margin: 10px 0 0; }

.stat.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      rgba(10, 96, 2, 0.585),
      rgba(232, 125, 10, 0.337)
    );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.stat.card {
  position: relative;
  overflow: hidden;
}

.stat.card:hover::before {
  opacity: 1;
}


/* TIMELINE */
.timeline{ margin-top: 18px; padding: 22px; }
.timeline h3{ margin: 0 0 10px; }
.timeline-row{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed rgba(15,23,42,.14);
}
.timeline-row:first-of-type{ border-top: none; }
.dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  margin-top: 6px;
}
.t-title{ margin:0; color: var(--text); font-weight: 800; }
.t-text{ margin: 6px 0 0; }

/* STORIES (card content) */
.story{ padding: 22px; overflow: hidden; }
.story-head{
  display:flex;
  align-items: baseline;
  gap: 10px;
}
.badge{
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(10,92,168,.08);
  border: 1px solid rgba(10,92,168,.20);
  color: var(--brand);
  font-weight: 850;
  font-size: .85rem;
}
.quote{
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid rgba(10,92,168,.55);
  border-radius: 12px;
  background: rgba(10,92,168,.05);
  color: #314559;
}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0;
}
.mini-stat{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(15,23,42,.02);
}
.mini-stat .mini-title{ margin:0; font-size:.85rem; color: var(--muted); }
.mini-stat .mini-value{ margin:6px 0 0; font-weight: 900; color: var(--text); }

/* REFERENCE */
.ref{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15,23,42,.16);
  color: #415569;
  font-size: .96rem;
}

/* MEMORIAL */
.memorial{
  padding: 0;
  overflow:hidden;
  display:grid;
  grid-template-columns: .9fr 1.1fr;
}
.memorial-media{
  min-height: 340px;
  background: rgba(15,23,42,.04);
  overflow: hidden; /* ensure zoom doesn't bleed out */
}
.memorial-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: grayscale(35%);
  transition: transform .6s ease, filter .4s ease;
  will-change: transform;
}

.memorial-media:hover img,
.memorial-media:focus-within img{
  transform: scale(1.06);
  filter: grayscale(0%);
}
.memorial-body{ padding: 24px; }
.memorial-body h2{ margin: 8px 0 8px; }

/* Memorial text – match Intro paragraph style */
.memorial .memorial-body p {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400 !important;
  color: var(--muted) !important;
  margin-bottom: 14px;
}

.memorial .memorial-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

/* DONATE */
.donate{
  background:
    radial-gradient(600px 260px at 0% 0%, rgba(10,92,168,.14), transparent 55%),
    radial-gradient(600px 260px at 100% 0%, rgba(18,185,129,.10), transparent 50%),
    var(--card);
}
.donate-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.donate-note{ margin-top: 10px; }

/* FOOTER */
.footer{
  padding: 28px 0;
  border-top: var(--border);
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.footer p{ margin: 6px 0 0; }
.footer-links{ display:flex; gap: 16px; }
.footer a{
  color: var(--brand);
  text-decoration:none;
  font-weight: 700;
}
.footer a:hover{ text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-meta{ grid-template-columns: 1fr; }
  .intro{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .media-card{ grid-template-columns: 1fr; }
  .memorial{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .topbar-actions{ display:none; }
  .hero{ min-height: 560px; }
}

/* -------------------------------------------------
   SLIDERS (Fellowship / Internship / Story)
-------------------------------------------------- */

/* Fellowship slider */
.fellowship-slider{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
}
.fellowship-track{
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.fellowship-slide{ flex: 0 0 100%; max-width: 100%; box-sizing: border-box; }

/* Nav buttons */
.fs-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(15,23,42,.18);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  z-index: 10;
  transition: transform .15s ease;
}
.fs-nav:hover{ transform: translateY(-50%) scale(1.06); }
.fs-prev{ left: 14px; }
.fs-next{ right: 14px; }

/* Dots */
.fs-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 10;
  pointer-events: auto;
}
.fs-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.45);
  cursor: pointer;
}
.fs-dot.is-active{ background: rgba(255,255,255,.95); }

@media (max-width: 980px){
  .fs-nav{ display:none; }
}

/* Internship slider */
.internship-slider{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
}
.internship-track{
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.internship-slide{ flex: 0 0 100%; max-width: 100%; box-sizing: border-box; }

/* Nav buttons */
.is-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 24px rgba(15,23,42,.18);
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}
.is-prev{ left: 14px; }
.is-next{ right: 14px; }

/* Dots */
.is-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}
.is-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.85);
  cursor: pointer;
}
.is-dot.active{ background: rgba(255,255,255,.95); }

@media (max-width: 900px){
  .is-nav{ display:none; }
}

/* Story slider */

.story-slider{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  width: 100%;
  max-width: var(--container); /* keep consistent with container */
  margin: 0 auto;
}

/* delete below Active slide */
.story-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.story h3 {
  position: relative;
  display: inline-block;
}

.story h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 2px;
  transition: width 0.6s ease;
}

.story-slide.is-active h3::after {
  width: 100%;
}

/*delete above if not required */
.story-track{
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}
.story-slide{
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block; /* IMPORTANT: prevents columns */
}
.story-slide.card.story{
  width: min(980px, 100%);
  margin: 0 auto;
}

/* Story arrows */
.story-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 10px 24px rgba(15,23,42,.18);
  cursor: pointer;
  font-size: 22px;
  z-index: 10;
}
.story-prev{ left: 14px; }
.story-next{ right: 14px; }

/* Story dots */
.story-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.story-dots button{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbb;
  border: none;
  cursor: pointer;
}
.story-dots button.active{ background: var(--brand); }

@media (max-width: 900px){
  .story-nav{ display:none; }
}

/* -------------------------------------------------
   MINI IMAGE SLIDER (inside cards)
   (kept your existing sizes; only story image reduced)
-------------------------------------------------- */

.media.mini-media-slider{ min-height: 0; } /* override .media min-height */

.mini-media-slider{
  position: relative;
  overflow: hidden;
  height: 320px;               /* increased height */
  background: rgba(15,23,42,.04);
  border-radius: 14px;
}
.mini-media-slider .mini-track{
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
}
.mini-media-slider .mini-track .mini-item{
  flex: 0 0 100%;
  position: relative; /* so per-item .tag positions inside each slide */
}
.mini-media-slider .mini-track img{
  width: 100%;
  height: 100%; /* fill slider height */
  flex: 0 0 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.mini-media-slider .mini-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 6px 16px rgba(15,23,42,.25);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
}
.mini-media-slider .mini-prev{ left: 10px; }
.mini-media-slider .mini-next{ right: 10px; }

@media (max-width: 768px){
  .mini-media-slider{ height: 220px; }
  .mini-media-slider .mini-nav{ display:none; }
}

/* Larger variant for specific sliders (e.g. Preventive Oncology) */
.mini-media-slider.large{
  height: 420px; /* bigger for featured mini-slider */
}
@media (max-width: 768px){
  .mini-media-slider.large{ height: 320px; }
}

/* Story: reduce mini image height only in story cards */
.story .mini-media-slider{
  height: 400px; /* match increased height for story cards */
  margin: -22px -22px 16px; /* nice full-bleed header look */
  border-radius: 18px 18px 0 0;
}
@media (max-width: 768px){
  .story .mini-media-slider{ height: 260px; }
}

/* FULL-WIDTH GRATITUDE CALLOUT */
.gratitude-callout{
  grid-column: 1 / -1;
  margin-top: 24px;
  padding: 24px 28px;
  background:
    linear-gradient(135deg, rgba(10,92,168,.08), rgba(18,185,129,.06)),
    var(--card);
  border-left: 6px solid var(--brand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gratitude-callout p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

/* FLUSH CARD – removes inner padding gap */
.card-flush{ padding: 0; }
.card-flush > *{ padding-left: 24px; padding-right: 24px; }
.card-flush h3{ padding-top: 24px; }
.card-flush .ref{ padding-bottom: 24px; }
.card-flush p{
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 14px;
}

@media (max-width: 600px){
  .gratitude-callout{ padding: 18px 20px; }
}

/* Video CTA */
.video-cta{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(15,23,42,.16);
  text-align: left;
}
.video-cta h4{
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

/* -------------------------------------------------
   New Partnerships grid (inline cards inside timeline)
-------------------------------------------------- */
.new-partnerships{ margin: 12px 0 0; padding-top: 12px; }
.new-partnerships h3{ margin: 0 0 14px; color: var(--brand); font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; }
.partners-grid{ display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.partner{ display:flex; gap:12px; align-items:flex-start; padding:12px; border-radius:12px; border: 1px solid rgba(15,23,42,.06); background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.96)); }
.partner-media{ width:64px; height:64px; flex:0 0 64px; border-radius:12px; overflow:hidden; display:flex; align-items:center; justify-content:center; background: rgba(15,23,42,.02); border: 1px solid rgba(15,23,42,.04); }
.partner-media img{ width: 100%; height: 100%; object-fit: contain; display:block; padding:8px; }
.partner-body .t-title{ margin:0; font-size: 1rem; font-weight:800; color: var(--text); }
.partner-body .t-text{ margin:6px 0 0; color: var(--muted); font-size: 0.95rem; }

@media (max-width: 720px){
  .partner{ padding: 10px; }
  .partner-media{ width:56px; height:56px; }
}

