[hidden],.sgad-search[hidden],.sgad-drawer[hidden]{display:none!important}
.sgad-search.is-open,.sgad-drawer.is-open{display:grid}

/* SGAD ULTRA UI SYSTEM - rebuilt clean */

:root {
  --sgad-page:#fff;
  --sgad-surface:#fff;
  --sgad-ink:#0f0f0f;
  --sgad-muted:#686b68;
  --sgad-border:#e6e3dc;
  --sgad-border-soft:#efede7;
  --sgad-black:#0f0f0f;
  --sgad-navyblue:#0D2D52;
  --sgad-darkgreen:#115A41;
  --sgad-white:#fff;
  --sgad-radius:24px;
  --sgad-radius-lg:32px;
  --sgad-shadow:0 24px 80px rgba(15,15,15,.10);
  --sgad-font:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

*,
*::before,
*::after { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  margin:0;
  background:var(--sgad-page);
  color:var(--sgad-ink);
  font-family:var(--sgad-font);
  line-height:1.6;
  letter-spacing:-.012em;
  animation:sgadPageIn .45s ease both;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

#main-content {
  flex:1;
}

@keyframes sgadPageIn {
  from { opacity:0; transform:translateY(8px); }
  to { opacity:1; transform:translateY(0); }
}

img { max-width:100%; display:block; }
a { color:inherit; }
::selection { background:#111; color:#fff; }

.sgad-wide {
  width:min(100% - 40px,1120px);
  margin-inline:auto;
}

.sgad-section { padding-block:clamp(72px,8vw,116px); }
.sgad-section--tight { padding-block:clamp(48px,6vw,84px); }
.sgad-section--compact { padding-block:clamp(24px,3vw,40px); }

.sgad-eyebrow {
  margin:0 0 14px;
  color:var(--sgad-muted);
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
}


.sgad-lede,
.sgad-hero p,
.sgad-archive-hero p {
  max-width:560px;
  color:var(--sgad-muted);
  font-size:18px;
  line-height:1.65;
  text-wrap:pretty;
}

.sgad-header {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(15,15,15,.06);
}

.sgad-header__inner {
  min-height:72px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:28px;
  align-items:center;
}

.sgad-wordmark {
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  outline:none;
}

.sgad-wordmark__mark {
  display:block;
  width:34px;
  height:34px;
  object-fit:contain;
  flex-shrink:0;
  padding:4px;
}

.sgad-wordmark__title {
  font-size:16px;
  font-weight:900;
  letter-spacing:-.04em;
  white-space:nowrap;
}

.sgad-custom-heading {
  color:var(--sgad-navyblue);
  font-size:clamp(22px,2.8vw,32px);
  line-height:1.2;
  letter-spacing:-.03em;
  white-space:nowrap;
}

.sgad-nav {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
}

.sgad-nav a,
.sgad-nav-dropdown span {
  position:relative;
  color:#3f403f;
  font-size:14px;
  font-weight:750;
  text-decoration:none;
}

.sgad-nav a::after,
.sgad-nav-dropdown span::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:#111;
  transition:width .22s ease;
}

.sgad-nav a:hover::after,
.sgad-nav-dropdown:hover span::after { width:100%; }

.sgad-nav-dropdown { position:relative; cursor:pointer; }
.sgad-nav-dropdown span { cursor:pointer; }

.sgad-dropdown-menu {
  position:absolute;
  top:100%;
  left:50%;
  display:grid;
  gap:8px;
  min-width:240px;
  padding:14px;
  padding-top:24px;
  background:var(--sgad-surface);
  border:1px solid var(--sgad-border-soft);
  border-radius:18px;
  box-shadow:var(--sgad-shadow);
  opacity:0;
  pointer-events:none;
  transform:translateX(-50%) translateY(8px);
  transition:.18s ease;
}

.sgad-nav-dropdown:hover .sgad-dropdown-menu {
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}

.sgad-header__actions {
  display:flex;
  align-items:center;
  gap:12px;
}

.sgad-header__signin {
  color:var(--sgad-muted);
  text-decoration:none;
  font-weight:750;
}

.sgad-icon-btn {
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border:1px solid var(--sgad-border);
  border-radius:14px;
  background:#fff;
  text-decoration:none;
  font-size:24px;
  cursor:pointer;
}

.sgad-mobile-toggle {
  display:none;
}

.sgad-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border:1px solid var(--sgad-border);
  border-radius:12px;
  font-size:14px;
  font-weight:850;
  white-space:nowrap;
  text-decoration:none;
  background:#fff;
  transition:transform .18s ease, box-shadow .18s ease;
}

.sgad-btn:hover {
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(15,15,15,.08);
}

.sgad-btn--primary {
  background:var(--sgad-darkgreen);
  color:var(--sgad-white);
  border-color:var(--sgad-darkgreen);
}

.sgad-btn--secondary,
.sgad-btn--ghost { background:#fff; color:var(--sgad-black); }

.sgad-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.sgad-chip {
  display:inline-flex;
  width:fit-content;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:inherit;
  font-size:11px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.sgad-chip--light {
  background:#f2f1ec;
  color:#111;
}

.sgad-hero__grid {
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(360px,1.05fr);
  gap:clamp(36px,6vw,76px);
  align-items:center;
}

.sgad-hero h1,
.sgad-archive-hero h1,
.sgad-author-hero h1 {
  max-width:700px;
  margin:0;
  font-size:clamp(52px,7.8vw,88px);
  line-height:.9;
  letter-spacing:-.075em;
  font-weight:900;
  text-wrap:balance;
}

.sgad-archive-hero h1 {
  font-size:clamp(22px,2.8vw,32px);
  line-height:1.2;
  letter-spacing:-.03em;
  color:var(--sgad-navyblue);
  white-space:nowrap;
  max-width:none;
}

.sgad-feature-card {
  position:relative;
  min-height:320px;
  overflow:hidden;
  border-radius:32px;
  background:#111;
  box-shadow:var(--sgad-shadow);
}

.sgad-feature-card a {
  display:block;
  min-height:inherit;
  color:#fff;
  text-decoration:none;
}

.sgad-feature-card img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}

.sgad-feature-card:hover img { transform:scale(1.04); }

.sgad-feature-card::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.74),rgba(0,0,0,.08));
}

.sgad-feature-card__content {
  position:absolute;
  z-index:2;
  inset:auto 20px 20px 20px;
}

.sgad-feature-card h2 {
  margin:10px 0 8px;
  color:#fff;
  font-size:clamp(18px,2.4vw,28px);
  line-height:1.1;
  letter-spacing:-.04em;
  text-wrap:balance;
}

.sgad-feature-card p {
  max-width:520px;
  color:rgba(255,255,255,.78);
}

.sgad-spotlight {
  border-radius:24px;
  overflow:hidden;
  background:var(--sgad-surface);
  border:1px solid var(--sgad-border);
  box-shadow:var(--sgad-shadow);
}

.sgad-spotlight__link {
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  min-height:340px;
  text-decoration:none;
  color:inherit;
}

.sgad-spotlight__image {
  overflow:hidden;
}

.sgad-spotlight__image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}

.sgad-spotlight:hover .sgad-spotlight__image img { transform:scale(1.03); }

.sgad-spotlight__content {
  padding:36px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
}

.sgad-spotlight__title {
  margin:0;
  font-size:clamp(20px,2.6vw,30px);
  line-height:1.15;
  letter-spacing:-.04em;
  font-weight:900;
  color:var(--sgad-ink);
}

.sgad-spotlight__excerpt {
  margin:0;
  color:var(--sgad-muted);
  font-size:15px;
  line-height:1.6;
}

.sgad-spotlight__meta {
  display:flex;
  gap:16px;
  font-size:13px;
  color:var(--sgad-muted);
  font-weight:600;
}

.sgad-spotlight__cta {
  margin-top:4px;
  width:fit-content;
  pointer-events:none;
}

.sgad-section-heading {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:28px;
}

.sgad-section-heading h2 {
  margin:0;
  max-width:740px;
  font-size:clamp(20px,2.6vw,28px);
  line-height:1.15;
  letter-spacing:-.03em;
  font-weight:900;
  text-wrap:balance;
}

.sgad-section-heading a {
  color:var(--sgad-navyblue);
  font-weight:750;
  font-size:13px;
  text-decoration:none;
  transition:opacity .18s ease;
}

.sgad-section-heading a:hover { opacity:.65; }

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

.sgad-article-card,
.sgad-category-card,
.sgad-ops-banner {
  position:relative;
  overflow:hidden;
  border:1px solid var(--sgad-border-soft);
  border-radius:24px;
  background:var(--sgad-surface);
  transition:transform .25s ease, box-shadow .25s ease;
}

.sgad-article-card:hover,
.sgad-category-card:hover,
.sgad-ops-banner:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(15,15,15,.10);
}

.sgad-article-card__link {
  display:block;
  color:inherit;
  text-decoration:none;
}

.sgad-article-card__media {
  aspect-ratio:16/10;
  overflow:hidden;
  background:#e9e6df;
}

.sgad-article-card__media img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.sgad-article-card:hover .sgad-article-card__media img { transform:scale(1.04); }

.sgad-article-card__fallback {
  width:100%;
  height:100%;
  background:radial-gradient(circle at 20% 20%,#fff,#dfddd5);
}

.sgad-article-card__body { padding:20px; }

.sgad-article-card h3 {
  margin:10px 0 8px;
  font-size:17px;
  line-height:1.2;
  letter-spacing:-.03em;
  font-weight:900;
  text-wrap:balance;
}

.sgad-article-card p,
.sgad-category-card p,
.sgad-ops-banner p {
  color:var(--sgad-muted);
  line-height:1.55;
  text-wrap:pretty;
}

.sgad-meta {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--sgad-muted);
  font-size:13px;
  font-weight:700;
}

.sgad-category-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.sgad-category-card {
  display:block;
  min-height:180px;
  padding:24px;
  padding-left:20px;
  color:inherit;
  text-decoration:none;
  border-left:3px solid var(--sgad-navyblue);
}

.sgad-category-card span {
  display:block;
  margin-bottom:8px;
  font-size:16px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.03em;
}

.sgad-ops-banner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:28px;
}

.sgad-archive-hero__grid,
.sgad-author-hero__grid {
  display:grid;
  grid-template-columns:1fr 380px;
  gap:48px;
  align-items:center;
}

.sgad-archive-hero img,
.sgad-author-hero img {
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:24px;
}

.sgad-article-shell {
  width:min(100% - 40px,760px);
  margin-inline:auto;
}

.sgad-article-hero {
  padding:clamp(72px,8vw,112px) 0 0;
}

.sgad-article-hero h1 {
  margin:14px 0 18px;
  font-size:clamp(46px,7vw,84px);
  line-height:.92;
  letter-spacing:-.075em;
  font-weight:900;
  text-wrap:balance;
}

.sgad-article-hero p {
  color:var(--sgad-muted);
  font-size:20px;
}

.sgad-article-image {
  width:min(100% - 40px,760px);
  margin:42px auto 0;
}

.sgad-article-image img {
  width:100%;
  max-height:620px;
  object-fit:cover;
  border-radius:32px;
}

/* Podcast posts: constrain feature image to content width so it aligns with the embedded player */
.tag-podcast .sgad-article-image,
.tag-hash-podcast .sgad-article-image {
  width:min(100% - 40px,760px);
  margin-top:32px;
}

.tag-podcast .sgad-article-image img,
.tag-hash-podcast .sgad-article-image img {
  max-height:420px;
  border-radius:24px;
}

.sgad-article-content {
  padding-block:clamp(48px,6vw,84px);
  font-size:19px;
  line-height:1.78;
}

.sgad-article-content h2 {
  margin-top:2.2em;
  font-size:clamp(30px,4vw,46px);
  line-height:1;
  letter-spacing:-.055em;
}

.sgad-article-content p,
.sgad-article-content li {
  color:#303230;
}

.sgad-article-content--dropcap > p:first-of-type:first-letter {
  float:left;
  margin:.08em .12em 0 0;
  font-size:4.2em;
  line-height:.82;
  font-weight:900;
}

.sgad-article-content img {
  border-radius:24px;
  margin-block:32px;
}

.sgad-article-footer {
  padding-bottom:84px;
}

.sgad-author-strip {
  display:grid;
  grid-template-columns:72px 1fr;
  gap:18px;
  padding:22px;
  border:1px solid var(--sgad-border);
  border-radius:24px;
  background:#fff;
}

.sgad-author-strip img {
  width:72px;
  height:72px;
  border-radius:50%;
  object-fit:cover;
}

.sgad-footer {
  background: linear-gradient(135deg, #07111f, #13263f);
  color: #d6dce5;
  padding: 56px 0 0;
}

.sgad-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.sgad-footer__brand img {
  width: 200px;
  height: auto;
  margin-bottom: 16px;
}

.sgad-footer__tagline {
  font-size: 13px;
  color: #8da0b8;
  line-height: 1.6;
  margin: 0;
}

.sgad-footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d9a441;
  margin: 0 0 14px;
}

.sgad-footer a {
  display: block;
  margin: 0.4rem 0;
  text-decoration: none;
  color: #8da0b8;
  font-size: 14px;
  transition: color 0.15s ease;
}

.sgad-footer a:hover {
  color: #fff;
}

.sgad-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: #56697d;
}

.sgad-search {
  position:fixed;
  inset:0;
  z-index:140;
  display:grid;
  place-items:start center;
  padding:72px 20px 20px;
  background:rgba(15,15,15,.32);
  backdrop-filter:blur(14px);
}

.sgad-search__panel,
.sgad-drawer__panel {
  width:min(100%, 920px);
  padding:28px;
  border:1px solid var(--sgad-border);
  border-radius:28px;
  background:rgba(255,255,255,.96);
  box-shadow:var(--sgad-shadow);
}

.sgad-search__top,
.sgad-drawer__top {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
}

.sgad-search__top h2 {
  margin:0;
  font-size:clamp(34px,5vw,52px);
  line-height:.95;
  letter-spacing:-.07em;
}

.sgad-search__form {
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:12px;
  margin-top:22px;
}

.sgad-search__links,
.sgad-drawer__topic-grid {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}

.sgad-search__links a,
.sgad-drawer__topic-grid a {
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  background:#f2f1ec;
  text-decoration:none;
  font-weight:700;
}

.sgad-drawer {
  position:fixed;
  inset:0;
  z-index:130;
  display:grid;
  place-items:start center;
  padding:16px;
  background:rgba(15,15,15,.28);
  backdrop-filter:blur(10px);
}

.sgad-drawer__panel {
  width:min(100%, 560px);
}

.sgad-drawer__nav {
  display:grid;
  gap:10px;
  margin-top:20px;
}

.sgad-drawer__nav a {
  display:block;
  padding:14px 0;
  border-bottom:1px solid var(--sgad-border-soft);
  text-decoration:none;
  font-size:18px;
  font-weight:800;
}

.sgad-no-scroll {
  overflow:hidden;
}

.sgad-search-results {
  display:grid;
  gap:20px;
}

.sgad-application-form,
.sgad-search-page-form {
  display:grid;
  gap:16px;
  padding:28px;
  border:1px solid var(--sgad-border);
  border-radius:28px;
  background:#fff;
}

input,
select,
textarea {
  width:100%;
  min-height:46px;
  padding:.85rem 1rem;
  border:1px solid var(--sgad-border);
  border-radius:14px;
  background:#fff;
  color:var(--sgad-ink);
  font:inherit;
}

textarea { resize:vertical; }

input:focus,
select:focus,
textarea:focus {
  outline:none;
  border-color:#111;
  box-shadow:0 0 0 4px rgba(15,15,15,.06);
}

.sgad-card::after { display:none !important; }

/* ── About page ─────────────────────────────────────── */
.sgad-about-hero {
  padding-top:clamp(72px,8vw,112px);
  padding-bottom:clamp(16px,2vw,24px);
  text-align:center;
}

.sgad-about-hero__title {
  margin:12px 0 20px;
  font-size:clamp(42px,6vw,72px);
  line-height:.94;
  letter-spacing:-.06em;
  font-weight:900;
  text-wrap:balance;
  color:var(--sgad-navyblue);
}

.sgad-about-hero__lead {
  max-width:600px;
  margin-inline:auto;
  color:var(--sgad-muted);
  font-size:clamp(17px,2vw,20px);
  line-height:1.65;
}

.sgad-about-image {
  width:min(100% - 40px,900px);
  margin:0 auto 0;
}

.sgad-about-image img {
  width:100%;
  max-height:500px;
  object-fit:cover;
  border-radius:28px;
}

.sgad-about-content {
  padding-top:clamp(20px,2.5vw,32px);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 36px;
  background:
    radial-gradient(circle at 12% 12%, rgba(217,164,65,.14), transparent 44%),
    radial-gradient(circle at 88% 10%, rgba(17,90,65,.22), transparent 52%),
    linear-gradient(135deg, #07111f, #13263f 45%, #1a3a5f);
  color: #fff;
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.home-hero__eyebrow {
  margin: 0 0 10px;
  color: #d9a441;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.home-hero__copy h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(36px, 5.6vw, 66px);
  line-height: .94;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.home-hero__lede {
  margin: 14px 0 0;
  max-width: 60ch;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}

.home-hero__actions {
  margin-top: 22px;
}

.home-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.home-hero__metrics div {
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.home-hero__metrics strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.home-hero__metrics span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  letter-spacing: .01em;
}

.home-hero__panels {
  display: grid;
  gap: 12px;
}

.home-hero-panel {
  display: block;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  text-decoration: none;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-hero-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.home-hero-panel--article {
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.05));
}

.home-hero-panel--podcast {
  background: linear-gradient(145deg, rgba(217,164,65,.28), rgba(217,164,65,.12));
}

.home-hero-panel__label {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.home-hero-panel h2 {
  margin: 8px 0 8px;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.home-hero-panel p {
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.55;
}

.home-quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-quick-link {
  display: block;
  padding: 18px;
  border: 1px solid var(--sgad-border-soft);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #fff, #fbfaf7);
  box-shadow: 0 10px 24px rgba(15,15,15,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-quick-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15,15,15,.11);
}

.home-quick-link span {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--sgad-navyblue);
}

.home-quick-link p {
  margin: 0;
  color: var(--sgad-muted);
  line-height: 1.45;
  font-size: 13px;
}

@media (max-width:980px) {
  .sgad-nav { display:none; }
  .sgad-header__inner { grid-template-columns:1fr auto; }
  .sgad-header__signin { display:none; }
  .sgad-mobile-toggle { display:grid; }

  .home-hero {
    padding-top: 18px;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-hero__copy h1 {
    max-width: 100%;
  }

  .home-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sgad-spotlight__link {
    grid-template-columns:1fr;
  }
  .sgad-spotlight__image {
    height:220px;
  }

  .sgad-hero__grid,
  .sgad-grid--three,
  .sgad-category-grid,
  .sgad-archive-hero__grid,
  .sgad-author-hero__grid,
  .sgad-footer__grid,
  .sgad-ops-banner {
    grid-template-columns: 1fr 1fr;
    display:grid;
  }

  .sgad-footer__brand {
    grid-column: 1 / -1;
  }

  .sgad-feature-card { min-height:240px; }

  .sgad-hero h1,
  .sgad-archive-hero h1,
  .sgad-author-hero h1 {
    font-size:clamp(44px,14vw,68px);
  }

  .sgad-archive-hero h1 {
    font-size:clamp(18px,5vw,24px);
    white-space:normal;
  }

  .sgad-search__form {
    grid-template-columns:1fr;
  }
}

@media (max-width:620px) {
  .home-hero__metrics {
    grid-template-columns: 1fr;
  }

  .home-quick-links {
    grid-template-columns: 1fr;
  }

  .home-hero-panel {
    padding: 16px;
  }
}

@media (prefers-reduced-motion:reduce) {
  *,
  *::before,
  *::after {
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
}



/* Ghost Koenig content card support required by gscan */
.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  margin: 2.4rem auto;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.2rem;
}

.kg-gallery-image {
  flex: 1 1 0;
  min-width: 0;
}

.kg-gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}

.kg-bookmark-card {
  display: block;
  margin: 2.4rem 0;
  color: inherit;
  text-decoration: none;
}

.kg-bookmark-card,
.kg-bookmark-card:hover {
  text-decoration: none;
}

.kg-bookmark-container {
  display: flex;
  min-height: 14rem;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.14);
  border-radius: 1.6rem;
  background: #fff;
  color: inherit;
  box-shadow: 0 1rem 2.4rem rgba(17,24,39,.08);
}

.kg-bookmark-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  gap: .8rem;
  min-width: 0;
  padding: 1.8rem;
}

.kg-bookmark-title {
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
}

.kg-bookmark-description {
  display: -webkit-box;
  overflow: hidden;
  color: #4b5563;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: auto;
  color: #6b7280;
  font-size: .9rem;
}

.kg-bookmark-icon {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
  border-radius: .3rem;
}

.kg-bookmark-author,
.kg-bookmark-publisher {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kg-bookmark-thumbnail {
  position: relative;
  flex: 0 0 32%;
  min-width: 12rem;
}

.kg-bookmark-thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  .kg-gallery-row,
  .kg-bookmark-container {
    flex-direction: column;
  }

  .kg-bookmark-thumbnail {
    flex-basis: 16rem;
    min-height: 16rem;
  }
}

.sgad-hero-flex {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sgad-hero-icon-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.sgad-hero-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sgad-hero-content {
    flex: 1;
}

@media (max-width: 768px) {
    .sgad-hero-flex {
        flex-direction: column;
        text-align: center;
    }
}

.char-counter {
  font-size: 0.85rem;
  margin-top: 6px;
  color: #6c757d;
  text-align: right;
}

.char-counter span {
  font-weight: bold;
}

.error-message {
  display: block;
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 4px;
}
.sgad-related {
  padding: 40px 0 70px;
}

.sgad-related-title {
  margin: 0 0 24px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.podcast-hero {
    padding: 10px 12px 18px;
    background: linear-gradient(135deg, #07111f, #13263f);
    color: #fff;
    text-align: left;
}

.podcast-hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.podcast-label {
    display: inline-block;
    margin-bottom: 4px;
    color: #d9a441;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.podcast-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.0;
    letter-spacing: -0.5px;
}

.podcast-hero p {
    font-size: 16px;
    color: #d6dce5;
    max-width: 620px;
    line-height: 1.4;
    margin: 0;
}

.article-post-hero .podcast-hero-inner {
  max-width: 900px;
}

.article-post-hero .sgad-chip--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  margin-bottom: 8px;
}

.article-post-hero .sgad-meta {
  margin-top: 10px;
  color: #d6dce5;
}

.article-post-hero .sgad-meta a {
  color: #fff;
  text-decoration: none;
}

.article-post-hero .sgad-meta a:hover {
  text-decoration: underline;
}

/* Articles hero — mirrors podcast-hero */
.articles-hero {
    padding: 10px 12px 18px;
    background: linear-gradient(135deg, #07111f, #13263f);
    color: #fff;
    text-align: left;
}

.articles-hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.articles-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.0;
    letter-spacing: -0.5px;
}

.articles-hero p {
    font-size: 16px;
    color: #d6dce5;
    max-width: 620px;
    line-height: 1.4;
    margin: 0;
}

/* Authors hero — mirrors podcast-hero */
.authors-hero {
    padding: 10px 12px 18px;
    background: linear-gradient(135deg, #07111f, #13263f);
    color: #fff;
    text-align: left;
}

.authors-hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.authors-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.0;
    letter-spacing: -0.5px;
}

.authors-hero p {
    font-size: 16px;
    color: #d6dce5;
    max-width: 620px;
    line-height: 1.4;
    margin: 0;
}

/* Tag/Category hero — mirrors podcast-hero */
.tag-hero {
    padding: 10px 12px 18px;
    background: linear-gradient(135deg, #07111f, #13263f);
    color: #fff;
    text-align: left;
}

.tag-hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.tag-hero-label {
    display: inline-block;
    margin-bottom: 4px;
    color: #d9a441;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.tag-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.0;
    letter-spacing: -0.5px;
}

.tag-hero p {
    font-size: 16px;
    color: #d6dce5;
    max-width: 620px;
    line-height: 1.4;
    margin: 0;
}

/* About hero — mirrors podcast-hero */
.about-hero {
    padding: 10px 12px 18px;
    background: linear-gradient(135deg, #07111f, #13263f);
    color: #fff;
    text-align: left;
}

.about-hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.0;
    letter-spacing: -0.5px;
}

.about-hero p {
    font-size: 16px;
    color: #d6dce5;
    max-width: 620px;
    line-height: 1.4;
    margin: 0;
}

/* Contribute hero — mirrors podcast-hero */
.contribute-hero {
    padding: 10px 12px 18px;
    background: linear-gradient(135deg, #07111f, #13263f);
    color: #fff;
    text-align: left;
}

.contribute-hero-inner {
    max-width: 850px;
    margin: 0 auto;
}

.contribute-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.0;
    letter-spacing: -0.5px;
}

.contribute-hero p {
    font-size: 16px;
    color: #d6dce5;
    max-width: 620px;
    line-height: 1.4;
    margin: 0;
}

.contributor-hero-lede {
  margin-top: 8px;
  color: rgba(214, 220, 229, 0.9);
}

.contributor-application-wrap {
  padding-top: 18px;
}

.contributor-application-intro {
  margin-bottom: 20px;
}

.contributor-application-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--sgad-navyblue);
}

.contributor-application-intro p {
  margin: 0;
  color: var(--sgad-muted);
  max-width: 720px;
}

.contributor-application-form {
  max-width: 900px;
}

.about-page-wrap .contributor-application-intro {
  margin-bottom: 16px;
}

.about-page-image {
  max-width: 900px;
  margin: 0 0 16px;
}

.about-page-image img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--sgad-border-soft);
}

.about-page-content {
  line-height: 1.7;
}

.about-page-content > *:first-child {
  margin-top: 0;
}

.about-page-content h2,
.about-page-content h3 {
  color: var(--sgad-navyblue);
  letter-spacing: -0.02em;
}

.contributor-application-form .sgad-status {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f4f6f8;
  color: #1f2937;
  border: 1px solid var(--sgad-border-soft);
}

.add-url-btn {
  margin-top: 10px;
}

.contributor-login-prompt {
  margin-bottom: 18px;
}

.contributor-login-prompt .sgad-auth-prompt {
  margin-top: 18px;
}

.contributor-login-prompt .sgad-auth-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 600px) {
  .contributor-application-form {
    padding: 20px;
    border-radius: 20px;
  }

  .contributor-application-intro h2 {
    font-size: 22px;
  }
}

/* =============================================
   YOUTH DESK PAGE
   ============================================= */

.yd-hero {
    padding: 48px 24px 52px;
    background: linear-gradient(135deg, #1a0533 0%, #2d1b69 40%, #11998e 100%);
    color: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.yd-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 200, 0, 0.08);
    pointer-events: none;
}

.yd-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 30%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(17, 153, 142, 0.15);
    pointer-events: none;
}

.yd-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.yd-hero-label {
    display: inline-block;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.yd-hero h1 {
    font-size: 44px;
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.yd-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    line-height: 1.6;
    margin: 0;
}

/* Category cards */
.yd-categories {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.yd-card {
    display: block;
    padding: 24px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.yd-card--voices  { background: linear-gradient(135deg, #e91e8c, #9b27af); }
.yd-card--careers { background: linear-gradient(135deg, #f97316, #ef4444); }
.yd-card--education { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.yd-card--tech    { background: linear-gradient(135deg, #11998e, #38ef7d); color: #0a2a28; }
.yd-card--health  { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.yd-card--biz     { background: linear-gradient(135deg, #f59e0b, #f97316); color: #2a1400; }

.yd-card__icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.yd-card h2 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 8px;
}

.yd-card p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.88;
}

/* Articles section */
.yd-articles {
    max-width: 1180px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.yd-articles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.yd-articles-header h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    color: #111827;
}

.yd-view-all {
    font-size: 14px;
    font-weight: 600;
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.15s;
}

.yd-view-all:hover { color: #6d28d9; }

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

.yd-article-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.yd-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.yd-article-card__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.yd-article-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.yd-article-card__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8b5cf6;
}

.yd-article-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
}

.yd-article-card h3 a {
    text-decoration: none;
    color: #111827;
}

.yd-article-card h3 a:hover { color: #8b5cf6; }

.yd-article-card p {
    font-size: 13px;
    color: #5b6472;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.yd-read-link {
    font-size: 13px;
    font-weight: 600;
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.15s;
}

.yd-read-link:hover { color: #6d28d9; }

.yd-empty {
    color: #8da0b8;
    font-size: 15px;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
}

@media (max-width: 900px) {
    .yd-categories { grid-template-columns: repeat(2, 1fr); }
    .yd-article-grid { grid-template-columns: repeat(2, 1fr); }
    .yd-hero h1 { font-size: 32px; }
}

@media (max-width: 560px) {
    .yd-categories { grid-template-columns: 1fr; }
    .yd-article-grid { grid-template-columns: 1fr; }
}

/* Author cards grid */
.author-card-grid {
    max-width: 1180px;
    margin: 32px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  padding: 28px 22px;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.author-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.author-card__avatar {
  width: 82px;
  height: 82px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
}

.author-card__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #07111f, #13263f);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}

.author-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.author-card__name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.author-card__bio {
    font-size: 13px;
    color: #5b6472;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.author-card__count {
    font-size: 12px;
    font-weight: 600;
    color: #d9a441;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .author-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .author-card-grid {
        grid-template-columns: 1fr;
    }
}

.podcast-categories {
    max-width: 1180px;
    margin: 12px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.podcast-category-card {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.podcast-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.podcast-category-card span {
    font-size: 24px;
}

.podcast-category-card h2 {
    margin: 6px 0 4px;
    font-size: 17px;
}

.podcast-category-card p {
    color: #5b6472;
    font-size: 13px;
    line-height: 1.5;
}

.latest-podcasts {
    max-width: 1180px;
    margin: 8px auto 70px;
    padding: 0 24px;
}

.latest-podcasts h2 {
    font-size: 34px;
    margin-bottom: 28px;
}

.podcast-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.podcast-post-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.podcast-post-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.podcast-post-content {
    padding: 24px;
}

.podcast-post-content h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.podcast-post-content h3 a {
    color: #111827;
    text-decoration: none;
}

.podcast-post-content p {
    color: #5b6472;
    line-height: 1.6;
}

.listen-link {
    display: inline-block;
    margin-top: 14px;
    color: #b7791f;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .podcast-categories,
    .podcast-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .podcast-hero h1 {
        font-size: 40px;
    }

    .podcast-categories,
    .podcast-post-grid {
        grid-template-columns: 1fr;
    }
}