/* ============================================================
   FLIGHTTEST.NET — Design System
   Fonts: Chakra Petch (display) + DM Sans (body)
   ============================================================ */

:root {
  --blue:        #4FA8FF;
  --blue-deep:   #1A72E8;
  --blue-bg:     #EEF5FF;
  --navy:        #0D1526;
  --text:        #0D1526;
  --text-mid:    #3A4A6B;
  --text-muted:  #7A8BAD;
  --text-faint:  #A0AECC;
  --border:      #DDE3F0;
  --border-card: #DDE8F8;
  --card-bg:     #F7FAFF;
  --white:       #FFFFFF;
  --off:         #F4F7FC;
  --green:       #22C55E;
  --green-text:  #15803D;

  --display: 'Chakra Petch', monospace;
  --body:    'DM Sans', sans-serif;

  --nav-h:  60px;
  --max-w:  1400px;
  --r:      6px;
  --t:      0.15s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--body); background: var(--white); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; min-height: 100vh; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; cursor: pointer; }
ul    { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: rgba(79,168,255,0.35); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(79,168,255,0.55); }

/* ── Accent rule ───────────────────────────────────────────── */
.accent-rule {
  height: 3px;
  background: linear-gradient(to right, var(--blue) 0%, rgba(79,168,255,0.06) 100%);
  flex-shrink: 0;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* ── Type ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h3 { font-size: 1.1rem; }
h4 { font-size: 0.9rem;  }
p  { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }
p + p { margin-top: 0.8rem; }
strong { color: var(--text); }

/* ── Layout ────────────────────────────────────────────────── */
.wrap    { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: 56px 0; }

/* ── Eyebrow / label ───────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34,197,94,0.55);
  animation: blink 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: var(--display);
  font-size: 10px; letter-spacing: 5px;
  color: var(--blue); text-transform: uppercase; font-weight: 500;
}
.label {
  font-family: var(--display);
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--blue);
  display: block; margin-bottom: 8px; font-weight: 500;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--display);
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.8rem; border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--off); }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  padding: 0.4rem 1rem !important; margin-left: 6px !important;
}
.nav-cta:hover { background: var(--blue-deep) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 1px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--display); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 20px; border-radius: var(--r);
  border: 1.5px solid transparent; transition: var(--t); cursor: pointer;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn-outline { border-color: var(--border-card); color: var(--text-mid); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-bg); }

/* ── Hero (white) ──────────────────────────────────────────── */
.hero { padding: 40px 0 24px; background: var(--white); }
.hero h1 { margin-bottom: 8px; }
.hero h1 .accent { color: var(--blue); }
.hero-sub { font-size: 14px; color: var(--text-muted); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ── Pill filters ──────────────────────────────────────────── */
.pills { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 0 32px; }
.pill {
  padding: 7px 14px; border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-muted);
  font-family: var(--display); font-size: 11px;
  letter-spacing: 1px; font-weight: 400; cursor: pointer;
  transition: all var(--t);
}
.pill:hover { border-color: #B8CBEE; color: #4A6FA5; }
.pill.active {
  border-color: var(--blue); background: var(--blue-bg);
  color: var(--blue-deep); font-weight: 700;
  box-shadow: 0 0 0 3px rgba(79,168,255,0.1);
}

/* ── Cards grid ────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 10px; }
.card {
  display: block; background: var(--card-bg);
  border: 1.5px solid var(--border-card); border-radius: 10px;
  padding: 16px 17px; transition: all 0.18s ease;
}
.card:hover {
  background: var(--blue-bg); border-color: #92BDEE;
  box-shadow: 0 4px 18px rgba(79,168,255,0.13);
  transform: translateY(-1px);
}
.card-disabled {
  background: #F7F8FB; border: 1.5px solid #E5E7EE;
  border-radius: 10px; padding: 16px 17px;
}
.card-name {
  font-family: var(--display); font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; line-height: 1.35;
}
.card-disabled .card-name { color: #8A95B0; }
.card-city {
  font-size: 11px; color: #8A9BBE; margin-bottom: 12px;
  display: flex; align-items: center; gap: 5px;
}
.pin-icon { width: 10px; height: 10px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2.5; }
.caps { display: flex; flex-wrap: wrap; gap: 3px; }
.cap {
  font-size: 8.5px; padding: 2px 5px; border-radius: 3px;
  font-family: var(--display); letter-spacing: 0.4px;
}
.cap.on  { background: rgba(34,197,94,0.1); color: var(--green-text); border: 1px solid rgba(34,197,94,0.28); font-weight: 600; }
.cap.off { background: rgba(0,0,0,0.035); color: #B4C0D4; border: 1px solid rgba(0,0,0,0.06); }
.card-no-profile { font-size: 10.5px; color: var(--text-faint); font-style: italic; }

/* ── Standard 3-col grid ───────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }

/* ── News card ─────────────────────────────────────────────── */
.news-card {
  border: 1.5px solid var(--border-card); border-radius: 10px;
  overflow: hidden; background: var(--white);
  transition: all 0.18s ease;
}
.news-card:hover { border-color: #92BDEE; box-shadow: 0 4px 18px rgba(79,168,255,0.12); transform: translateY(-1px); }
.news-card-img { width: 100%; height: 160px; object-fit: cover; }
.news-card-body { padding: 16px; }
.news-card-body h3 { font-family: var(--display); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.news-card-body p  { font-size: 12px; color: var(--text-muted); }
.news-card-date { font-family: var(--display); font-size: 10px; letter-spacing: 2px; color: var(--text-faint); margin-top: 10px; }

/* ── State heading ─────────────────────────────────────────── */
.state-heading {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.state-code { font-family: var(--display); font-size: 10px; letter-spacing: 5px; color: var(--blue); text-transform: uppercase; font-weight: 600; }
.state-name { font-size: 13px; color: var(--text-faint); }
.divider-line { flex: 1; height: 1px; background: linear-gradient(to right, #DDE8FF, transparent); }
.state-count { font-family: var(--display); font-size: 10px; letter-spacing: 2px; color: var(--text-faint); }

/* ── Notice ─────────────────────────────────────────────────── */
.notice {
  border: 1.5px solid var(--border-card);
  border-left: 3px solid var(--blue);
  padding: 12px 16px; font-size: 13px; color: var(--text-mid);
  margin-bottom: 24px; border-radius: 0 var(--r) var(--r) 0;
  background: var(--card-bg);
}

/* ── Feature items ──────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 12px; margin-bottom: 32px; }
.feature-item {
  padding: 16px; background: var(--card-bg);
  border: 1.5px solid var(--border-card); border-radius: 10px;
  border-left: 3px solid var(--blue);
}
.feature-item h4 { font-family: var(--display); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.feature-item p  { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ── Split ──────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-img { border-radius: 10px; overflow: hidden; }
.split-img img { width: 100%; height: 340px; object-fit: cover; }

/* ── Contact form ───────────────────────────────────────────── */
.form-wrap {
  background: var(--card-bg); border: 1.5px solid var(--border-card);
  border-radius: 10px; padding: 28px;
}
.form-group { margin-bottom: 14px; }
.form-label {
  display: block; font-family: var(--display); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--body); font-size: 14px; color: var(--text);
  background: var(--white); transition: border-color var(--t);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-honeypot { display: none !important; }
.form-msg { display: none; padding: 10px 14px; font-size: 13px; font-weight: 600; margin-top: 10px; border-radius: var(--r); }
.form-msg.success { background: rgba(34,197,94,0.08); color: var(--green-text); border: 1px solid rgba(34,197,94,0.25); display: block; }
.form-msg.error   { background: rgba(185,28,28,0.06); color: #B91C1C; border: 1px solid rgba(185,28,28,0.2); display: block; }

/* ── Profile hero ───────────────────────────────────────────── */
.profile-hero { padding: 40px 0 32px; background: var(--white); }
.profile-inner { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; }
.profile-photo { }
.profile-name  { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--navy); margin-bottom: 4px; }
.profile-role  { font-family: var(--display); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.profile-tags  { display: flex; flex-wrap: wrap; gap: 5px; }
.tag { font-family: var(--display); font-size: 9px; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border: 1.5px solid var(--border); color: var(--text-muted); border-radius: var(--r); }

/* ── Article ─────────────────────────────────────────────────── */
.article-hero { padding: 40px 0 24px; }
.article-body { max-width: 720px; margin: 0 auto; padding: 0 40px 72px; }
.article-body h2, .article-body h3 { margin: 28px 0 10px; }
.article-body ul { margin: 10px 0 16px 20px; list-style: disc; }
.article-body li { color: var(--text-mid); margin-bottom: 5px; font-size: 14px; }
.article-body p  { font-size: 14px; }
.article-body a  { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.article-body img { border-radius: var(--r); margin: 20px 0; max-width: 100%; }
.article-body figure.alignright { float: right; margin: 0 0 16px 24px; max-width: 220px; }
.article-footer { font-family: var(--display); font-size: 10px; letter-spacing: 2px; color: var(--text-faint); border-top: 1px solid var(--border); padding-top: 16px; margin-top: 32px; }

/* ── Info rows (contact) ────────────────────────────────────── */
.info-item { padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-label { font-family: var(--display); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.info-value { font-size: 14px; font-weight: 500; color: var(--text); }

/* ── Divider ─────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ── Footer note ─────────────────────────────────────────────── */
.footer-note {
  text-align: center; font-family: var(--display); font-size: 10px;
  letter-spacing: 1.5px; color: #C8D2E4; padding: 20px 40px 40px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-logo img { height: 28px; width: auto; margin-bottom: 10px; }
.footer-brand p { font-size: 12px; color: var(--text-muted); max-width: 220px; }
.footer-col h5 { font-family: var(--display); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.footer-col a  { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 6px; transition: color var(--t); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-faint); flex-wrap: wrap; gap: 10px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .split  { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .profile-inner { grid-template-columns: 1fr; text-align: center; }
  .profile-photo { margin: 0 auto; }
  .profile-tags  { justify-content: center; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 8px; gap: 0; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; border-radius: 0; }
  .nav-toggle { display: flex; }
  .hero { padding: 28px 0 16px; }
  .section { padding: 36px 0; }
  .article-body { padding: 0 20px 56px; }
  .article-body figure.alignright { float: none; margin: 12px 0; max-width: 100%; }
  .footer-note { padding: 16px 20px 32px; }
}


/* ── Article / Blog post ── */
.article-page { }
.article-header { padding: 40px 0 32px; background: var(--white); border-bottom: 1px solid var(--border); }
.article-meta-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 0.82rem; color: var(--text-muted); }
.back-link { display: inline-flex; align-items: center; gap: 4px; color: var(--blue); text-decoration: none; font-weight: 600; }
.back-link:hover { color: var(--blue-deep); }
.article-date { }
.article-header h1 { max-width: 780px; }
.article-byline { color: var(--text-mid); margin-top: .5rem; }
.article-byline a { color: var(--blue); }
.article-hero { width: 100%; max-height: 420px; overflow: hidden; }
.article-hero img { width: 100%; height: 420px; object-fit: cover; display: block; }
.article-body { max-width: 780px; padding-top: 3rem; padding-bottom: 2rem; }
.article-body h2 { margin-top: 2rem; }
.article-body p { line-height: 1.75; margin-bottom: 1.1em; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--r); margin: 1.5rem 0; }
.article-footer { padding-bottom: 4rem; }
.article-cta-box { background: var(--card-bg); border: 1.5px solid var(--border-card); border-radius: 10px; padding: 2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.article-cta-box p { margin: 0; color: var(--text-mid); flex: 1; min-width: 200px; }

/* ── Profile pages ── */
.profile-hero { padding: 40px 0 32px; background: var(--white); border-bottom: 1px solid var(--border); }
.profile-hero-inner { display: flex; gap: 3rem; align-items: flex-start; }
.profile-photo { flex-shrink: 0; }
.profile-photo img { width: 180px; height: 220px; object-fit: cover; border-radius: 10px; border: 1.5px solid var(--border-card); }
.profile-photo img[src$=".svg"] { object-fit: contain; background: var(--blue-bg); padding: 16px; box-sizing: border-box; }
.profile-photo--placeholder { width: 180px; height: 220px; border-radius: 10px; background: var(--blue-bg); border: 1.5px solid rgba(79,168,255,.3); display: flex; align-items: center; justify-content: center; }
.profile-photo--placeholder span { font-family: var(--display); font-size: 2.5rem; font-weight: 700; color: var(--blue); }
.profile-location { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 1rem; }
.profile-info { flex: 1; }
.profile-info h1 { margin: .5rem 0 1rem; }
.profile-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.profile-tags .tag { background: var(--blue-bg); color: var(--blue-deep); border: 1px solid rgba(79,168,255,.3); border-radius: 999px; padding: 4px 12px; font-size: 0.78rem; font-weight: 600; font-family: var(--display); }
.profile-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.profile-content { max-width: 780px; }
.profile-content h2 { margin-top: 2rem; }
.profile-content p { line-height: 1.75; margin-bottom: 1.1em; }
.profile-contact-box { margin-top: 3rem; background: var(--card-bg); border: 1.5px solid var(--border-card); border-radius: 10px; padding: 2rem; max-width: 500px; }
.profile-contact-box h3 { margin: 0 0 .5rem; }
.profile-contact-box p { color: var(--text-mid); margin-bottom: 1.5rem; }

/* ── IFR Notes / Content split ── */
.content-split { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start; }
.content-main h2 { margin-top: 0; }
.content-main p { line-height: 1.75; margin-bottom: 1.1em; }
.content-aside { position: sticky; top: calc(var(--nav-h) + 24px); }
.aside-card { background: var(--card-bg); border: 1.5px solid var(--border-card); border-radius: 10px; padding: 1.5rem; }
.aside-card h5 { font-family: var(--display); font-size: 0.75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 1rem; }
.aside-card a { display: block; color: var(--blue); text-decoration: none; padding: .3rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.aside-card a:last-child { border-bottom: none; }
.aside-card a:hover { color: var(--blue-deep); }
.download-card { display: flex; align-items: center; gap: 1.5rem; background: var(--card-bg); border: 1.5px solid var(--border-card); border-radius: 10px; padding: 1.5rem; margin: 2rem 0; }
.download-icon { flex-shrink: 0; }
.download-info { flex: 1; }
.download-title { font-weight: 600; color: var(--navy); }
.download-meta { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border: 1.5px solid var(--blue); color: var(--blue); border-radius: var(--r); font-weight: 600; text-decoration: none; transition: var(--t); font-size: 0.88rem; }
.btn-outline:hover { background: var(--blue-bg); }

/* ── POH accordion ── */
.poh-notice { background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 8px; padding: 1rem 1.25rem; font-size: 0.85rem; color: #92400E; margin-bottom: 2rem; }
.accordion { border: 1.5px solid var(--border-card); border-radius: 10px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--white); border: none; cursor: pointer; text-align: left; font-family: var(--display); font-size: 0.92rem; font-weight: 600; color: var(--navy); transition: var(--t); gap: 1rem; }
.accordion-trigger:hover { background: var(--off); }
.accordion-icon { transition: transform var(--t); flex-shrink: 0; color: var(--text-muted); }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.accordion-item.open .accordion-body { max-height: 2000px; }
.poh-links { padding: 1rem 1.25rem 1.25rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .4rem; }
.poh-links p { margin: 0; }
.poh-links a { color: var(--blue); text-decoration: none; font-size: 0.88rem; padding: .35rem .5rem; border-radius: 4px; display: block; transition: var(--t); }
.poh-links a:hover { background: var(--blue-bg); color: var(--blue-deep); }
.card-company { font-size: 0.78rem; color: var(--text-muted); margin-left: .75rem; }

/* ── Dir empty state ── */
.empty-msg { color: var(--text-muted); padding: 3rem 0; text-align: center; }
.dir-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.dir-count { font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; }

@media (max-width: 768px) {
  .content-split { grid-template-columns: 1fr; }
  .profile-hero-inner { flex-direction: column; }
  .profile-photo img { width: 140px; height: 170px; }
  .profile-photo img[src$=".svg"] { padding: 12px; }
  .article-cta-box { flex-direction: column; }
  .poh-links { grid-template-columns: 1fr; }
}


/* ── News grid ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.news-card { background: var(--white); border: 1.5px solid var(--border-card); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--t); }
.news-card:hover { box-shadow: 0 4px 24px rgba(79,168,255,.12); }
.news-card-img-link { display: block; overflow: hidden; }
.news-card-img-link img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .3s ease; }
.news-card:hover .news-card-img-link img { transform: scale(1.03); }
.news-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-tag { display: inline-block; background: var(--blue-bg); color: var(--blue-deep); border-radius: 999px; padding: 3px 10px; font-size: 0.74rem; font-weight: 700; font-family: var(--display); letter-spacing: .04em; margin-bottom: .75rem; }
.news-card-body h3 { margin: 0 0 .75rem; font-size: 1.05rem; line-height: 1.35; }
.news-card-body h3 a { color: var(--navy); text-decoration: none; }
.news-card-body h3 a:hover { color: var(--blue); }
.news-excerpt { color: var(--text-mid); font-size: 0.88rem; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.news-read-more { color: var(--blue); font-size: 0.85rem; font-weight: 600; text-decoration: none; margin-top: auto; }
.news-read-more:hover { color: var(--blue-deep); }
