@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --blue:       #0071BC;
  --blue-dark:  #004F85;
  --blue-bg:    #001e38;
  --blue-light: #EBF5FC;
  --green:      #2D9162;
  --green-dark: #1D6344;
  --green-light:#E6F4ED;
  --text:       #1A2535;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --white:      #FFFFFF;
  --bg:         #F7F9FC;
  --border:     #E2E8F0;
  --shadow:     0 2px 16px rgba(0,113,188,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
  --r:          10px;
  --r-lg:       16px;
  --ease:       all .25s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); line-height: 1.75; background: var(--white); }
img  { max-width: 100%; display: block; }
a    { color: var(--blue); text-decoration: none; transition: var(--ease); }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; }
h1  { font-size: clamp(2rem, 5vw, 3.4rem); }
h2  { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3  { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p   { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section-alt  { background: var(--bg); }
.section-dark { background: var(--blue-bg); }

/* ── Section heading ───────────────────────────────────── */
.sh { text-align: center; margin-bottom: 3.5rem; }
.sh h2 { margin-bottom: .6rem; }
.sh p  { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.sh::after { content:''; display:block; width:56px; height:4px; background: linear-gradient(90deg, var(--blue), var(--green)); margin: 1rem auto 0; border-radius: 2px; }
.section-dark .sh h2 { color: var(--white); }
.section-dark .sh p  { color: rgba(255,255,255,.65); }

/* ── Grids ─────────────────────────────────────────────── */
.g2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.g3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.75rem; }

/* ── Navigation ────────────────────────────────────────── */
nav { position: fixed; inset: 0 0 auto; z-index: 1000; background: rgba(0,18,32,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.nav-brand { display: flex; align-items: center; gap: .75rem; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem; text-decoration: none; }
.nav-brand img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.nav-brand .group-logo { filter: none; opacity: 1; height: 44px; }
.nav-brand-sub { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 400; display: block; }
.nav-menu { display: flex; gap: .15rem; list-style: none; }
.nav-menu a { display: block; color: rgba(255,255,255,.75); font-size: .84rem; font-weight: 600; padding: .45rem .9rem; border-radius: 7px; transition: var(--ease); font-family: 'Montserrat', sans-serif; }
.nav-menu a:hover  { color: var(--white); background: rgba(255,255,255,.09); }
.nav-menu a.active { color: var(--white); background: var(--blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--ease); }

@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-menu  { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #00111f; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-menu.open { display: flex; }
  .nav-menu a    { padding: .7rem 1rem; }
}

/* ── Hero (home) ───────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 0 4rem;
  background: linear-gradient(140deg, rgba(1,51,88,.60) 0%, rgba(15,96,174,.54) 35%, rgba(47,163,220,.48) 75%, rgba(38,149,110,.56) 100%), url('../computational_biology.jpeg') center/cover no-repeat;
  color: var(--white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 72% 55%, rgba(45,145,98,.18) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 80%, rgba(0,113,188,.22) 0%, transparent 45%);
}
.hero-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hd1,.hd2,.hd3 { position: absolute; border-radius: 50%; }
.hd1 { width: 620px; height: 620px; right: -160px; top: 50%; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.05); }
.hd2 { width: 400px; height: 400px; right: -40px;  top: 50%; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.07); }
.hd3 { width: 200px; height: 200px; right:  60px;  top: 50%; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.10); background: rgba(94,205,166,.04); }

.hero-split { display: grid; grid-template-columns: auto 1fr; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.hero-logo-col { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
@media (max-width: 820px) { .hero-logo-col { display: none; } }
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88); padding: .35rem 1rem; border-radius: 100px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.5rem; font-family: 'Montserrat', sans-serif;
}
.hero-content h1      { color: var(--white); margin-bottom: 1.25rem; }
.hero-content h1 em   { font-style: normal; color: #5ECDA6; }
.hero-content > p     { font-size: 1.15rem; color: rgba(255,255,255,.78); max-width: 600px; margin-bottom: 2rem; }
.hero-btns            { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats           { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.stat-n { font-size: 2.2rem; font-weight: 800; color: var(--white); font-family: 'Montserrat', sans-serif; line-height: 1; }
.stat-l { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .2rem; }

/* ── Buttons ───────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .45rem; padding: .75rem 1.6rem; border-radius: 8px; font-weight: 700; font-size: .88rem; transition: var(--ease); font-family: 'Montserrat', sans-serif; border: none; cursor: pointer; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,145,98,.35); }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,.42); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.10); color: var(--white); transform: translateY(-2px); }
.btn-blue  { background: var(--blue); color: var(--white); }
.btn-blue:hover  { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

/* ── Card ──────────────────────────────────────────────── */
.card { background: var(--white); border-radius: var(--r-lg); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .6rem; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.ci-blue   { background: var(--blue-light);  color: var(--blue); }
.ci-green  { background: var(--green-light); color: var(--green); }
.ci-indigo { background: #EDE9FE; color: #5B21B6; }

/* ── Tags ──────────────────────────────────────────────── */
.tag { font-size: .75rem; font-weight: 600; padding: .25rem .65rem; border-radius: 100px; font-family: 'Montserrat', sans-serif; display: inline-block; }
.tag-b { background: var(--blue-light);  color: var(--blue); }
.tag-g { background: var(--green-light); color: var(--green); }
.tag-i { background: #EDE9FE; color: #5B21B6; }
.tags  { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.25rem; }

/* ── Page hero (inner pages) ───────────────────────────── */
.ph   { background: linear-gradient(140deg, #001525 0%, #002f55 50%, #0071BC 100%); padding: 8rem 0 4rem; text-align: center; }
.ph h1 { color: var(--white); margin-bottom: .75rem; }
.ph p  { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── Research themes ───────────────────────────────────── */
.rt { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4.5rem 0; border-bottom: 1px solid var(--border); }
.rt:last-child { border-bottom: none; }
.rt.flip { direction: rtl; }
.rt.flip > * { direction: ltr; }
@media (max-width: 820px) { .rt, .rt.flip { grid-template-columns: 1fr; direction: ltr; } }

.rt-visual { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.2rem; }
.rv-1 { background: linear-gradient(135deg, #001e38 0%, #003f70 50%, #0071BC 100%); }
.rv-2 { background: linear-gradient(135deg, #001525 0%, #003325 50%, #1D6344 100%); }
.rv-3 { background: linear-gradient(135deg, #1A0030 0%, #3B1070 50%, #5B21B6 100%); }
.rt-vis-icon { font-size: 5.5rem; color: rgba(255,255,255,.12); }
.rt-vis-sub  { color: rgba(255,255,255,.5); font-size: .75rem; font-family: 'Montserrat', sans-serif; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.rt-vis-nodes { display: flex; gap: 1rem; }
.rt-vis-node  { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25); }
.rt-vis-node.accent { background: rgba(94,205,166,.25); border-color: rgba(94,205,166,.5); }

.rt-tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .28rem .7rem; border-radius: 100px; margin-bottom: .75rem; font-family: 'Montserrat', sans-serif; }
.rt-tag-b { background: var(--blue-light);  color: var(--blue); }
.rt-tag-g { background: var(--green-light); color: var(--green); }
.rt-tag-i { background: #EDE9FE; color: #5B21B6; }
.rt h3 { margin-bottom: .8rem; }

/* ── People ────────────────────────────────────────────── */
.pc { text-align: center; }
.avatar { width: 200px; height: 200px; border-radius: 50%; margin: 0 auto 1.25rem; overflow: hidden; border: 4px solid var(--blue); box-shadow: 0 4px 28px rgba(0,113,188,.22); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.pc-name  { font-size: 1.3rem; margin-bottom: .2rem; }
.pc-role  { color: var(--blue); font-size: .88rem; font-weight: 700; margin-bottom: .2rem; font-family: 'Montserrat', sans-serif; }
.pc-affil { color: var(--text-light); font-size: .8rem; margin-bottom: 1rem; }
.pc-bio   { font-size: .9rem; color: var(--text-mid); margin-bottom: 1.25rem; text-align: left; }
.pc-links { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.pc-link  { display: inline-flex; align-items: center; gap: .3rem; background: var(--bg); border: 1px solid var(--border); color: var(--text-mid); padding: .32rem .75rem; border-radius: 6px; font-size: .78rem; font-weight: 600; transition: var(--ease); font-family: 'Montserrat', sans-serif; }
.pc-link:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

.opening { background: var(--white); border: 2px dashed var(--border); border-radius: var(--r-lg); padding: 2.5rem; text-align: center; }
.opening i { font-size: 2.5rem; color: var(--border); margin-bottom: 1rem; display: block; }
.opening h3 { color: var(--text-mid); margin-bottom: .5rem; font-size: 1.1rem; }
.opening p  { font-size: .9rem; }
.opening .btn { margin-top: 1.25rem; }

/* ── Publications ──────────────────────────────────────── */
.pub-metrics { display: flex; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.pm     { text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem 2rem; flex: 1; min-width: 130px; box-shadow: var(--shadow); }
.pm-n   { font-size: 2rem; font-weight: 800; color: var(--blue); font-family: 'Montserrat', sans-serif; line-height: 1; }
.pm-l   { font-size: .78rem; color: var(--text-light); margin-top: .25rem; }
.pub-links { display: flex; gap: .75rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

.pub    { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.4rem 1.6rem; margin-bottom: .85rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: var(--ease); }
.pub:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.pub-yr    { background: var(--blue-light); color: var(--blue); font-weight: 700; font-size: .82rem; padding: .3rem .6rem; border-radius: 6px; white-space: nowrap; font-family: 'Montserrat', sans-serif; flex-shrink: 0; margin-top: .15rem; }
.pub-body  { flex: 1; min-width: 0; }
.pub-title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; color: var(--text); font-family: 'Montserrat', sans-serif; line-height: 1.4; }
.pub-auth  { font-size: .83rem; color: var(--text-light); margin-bottom: .3rem; }
.pub-auth b { color: var(--blue); font-weight: 700; }
.pub-venue { font-size: .83rem; color: var(--text-mid); font-style: italic; }
.pub-cites { text-align: center; flex-shrink: 0; min-width: 52px; }
.pub-cn    { font-size: 1.35rem; font-weight: 800; color: var(--blue); font-family: 'Montserrat', sans-serif; line-height: 1; }
.pub-cl    { font-size: .68rem; color: var(--text-light); }
@media (max-width: 600px) { .pub { flex-direction: column; } .pub-cites { display: flex; align-items: center; gap: .5rem; } }

/* ── News ──────────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; gap: 1.25rem; }
.ni       { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; display: flex; transition: var(--ease); }
.ni:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.ni-date  { background: var(--blue); color: var(--white); padding: 1.25rem 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 76px; }
.ni-day   { font-size: 1.9rem; font-weight: 800; line-height: 1; font-family: 'Montserrat', sans-serif; }
.ni-mon   { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; }
.ni-yr    { font-size: .62rem; opacity: .65; margin-top: .1rem; }
.ni-body  { padding: 1.25rem 1.5rem; flex: 1; }
.ni-tag   { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); margin-bottom: .4rem; font-family: 'Montserrat', sans-serif; display: block; }
.ni-title { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; color: var(--text); font-family: 'Montserrat', sans-serif; }
.ni-text  { font-size: .875rem; color: var(--text-mid); }

/* ── Join Us ───────────────────────────────────────────── */
.pos-card { background: var(--white); border: 1px solid var(--border); border-left: 5px solid var(--blue); border-radius: var(--r-lg); padding: 2.5rem; margin-bottom: 2rem; transition: var(--ease); }
.pos-card:hover { box-shadow: var(--shadow-lg); }
.pos-card.postdoc { border-left-color: var(--green); }
.pos-badge { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .28rem .75rem; border-radius: 100px; margin-bottom: 1.25rem; font-family: 'Montserrat', sans-serif; }
.pb-blue  { background: var(--blue-light);  color: var(--blue); }
.pb-green { background: var(--green-light); color: var(--green); }
.pos-title { margin-bottom: .75rem; }
.pos-list  { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.pos-list li { padding: .4rem 0 .4rem 1.6rem; position: relative; color: var(--text-mid); font-size: .925rem; }
.pos-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pos-footer { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.pos-detail { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--text-light); }
.pos-detail i { color: var(--blue); }

/* ── Contact ───────────────────────────────────────────── */
.cg { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 740px) { .cg { grid-template-columns: 1fr; gap: 2.5rem; } }
.ci-row   { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.ci-icon  { width: 46px; height: 46px; border-radius: 11px; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-label { font-size: .76rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-family: 'Montserrat', sans-serif; margin-bottom: .18rem; }
.ci-val   { font-size: .95rem; color: var(--text); font-weight: 500; }
.ci-val a:hover { color: var(--blue-dark); }

.profile-links { display: flex; flex-direction: column; gap: .75rem; }
.pl       { display: flex; align-items: center; gap: 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 1rem 1.25rem; transition: var(--ease); }
.pl:hover { background: var(--blue-light); border-color: var(--blue); }
.pl-icon  { width: 44px; height: 44px; border-radius: 10px; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.pl-name  { font-size: .9rem; font-weight: 700; color: var(--text); font-family: 'Montserrat', sans-serif; display: block; }
.pl-desc  { font-size: .78rem; color: var(--text-light); display: block; }
.pl-arrow { color: var(--text-light); margin-left: auto; }

/* ── CTA Banner ────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--blue-bg) 0%, var(--blue-dark) 100%); color: var(--white); padding: 5rem 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.72); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────── */
footer { background: #000e1a; color: rgba(255,255,255,.6); padding: 4rem 0 2rem; }
.ft    { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
@media (max-width: 720px) { .ft { grid-template-columns: 1fr; gap: 2rem; } }
.ft-support { display: flex; align-items: center; gap: 1.5rem; padding: 1.25rem 0 1.75rem; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: .5rem; flex-wrap: wrap; }
.ft-support-label { font-size: .75rem; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.45); white-space: nowrap; }
.ft-support-logo { height: auto; max-height: 64px; width: auto; max-width: none; opacity: .92; display: block; }
.ft-logo  { height: 38px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .65; }
.ft-name  { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.ft-desc  { font-size: .85rem; line-height: 1.7; }
footer h4 { color: rgba(255,255,255,.88); font-size: .8rem; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer li { margin-bottom: .5rem; }
footer a  { color: rgba(255,255,255,.52); font-size: .875rem; transition: var(--ease); }
footer a:hover { color: var(--white); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: .5rem; }

/* ── Phage explainer (home) ────────────────────────────── */
.phage-explainer {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4.5rem;
  align-items: center;
}
.phage-explainer-img { flex-shrink: 0; }
@media (max-width: 820px) {
  .phage-explainer { grid-template-columns: 1fr; gap: 2.5rem; }
  .phage-explainer-img { max-width: 220px; margin: 0 auto; }
}

/* ── Outreach cards (Popular Science) ─────────────────── */
.outreach-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.outreach-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.oc-img {
  height: 220px;
  overflow: hidden;
  background: var(--bg);
  flex-shrink: 0;
}
.oc-img-radio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: linear-gradient(135deg, #1a0033 0%, #4a0080 100%);
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
}
.oc-img-radio i { font-size: 2.5rem; opacity: .8; }
.oc-body { padding: 1.75rem 2rem; display: flex; flex-direction: column; }
.oc-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text); margin-bottom: .75rem; line-height: 1.35; }
.oc-text  { font-size: .9rem; color: var(--text-mid); line-height: 1.7; flex: 1; }
@media (max-width: 700px) {
  .outreach-card { grid-template-columns: 1fr; }
  .oc-img { height: 180px; }
}

/* ── Utility ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
