:root {
  --bg: #070707;
  --bg-soft: #111114;
  --panel: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.12);
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --accent: #f0b236;
  --danger: #cb3737;
  --max: 1200px;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255,125,0,0.14), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(255,180,70,0.1), transparent 25%),
    linear-gradient(180deg, #050505 0%, #0c0c0f 45%, #060606 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(255,180,0,0.04) 1px, transparent 1px);
  background-size: 30px 30px, 60px 60px;
  background-position: 0 0, 15px 15px;
  opacity: 0.2;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; position: relative; }
.section-line::before,
.section-line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,178,54,0.7), transparent);
}
.section-line::before { top: 0; }
.section-line::after { bottom: 0; opacity: 0.35; }

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.02;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {  font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); text-align: center; }
h3 { font-size: 1.65rem; }
p { margin: 0; color: var(--muted); }
.section-intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
  font-size: 1.08rem;
}
.accent { color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7,7,7,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,153,0,0.9), transparent);
  box-shadow: 0 0 18px rgba(255,145,0,0.35);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dc3d3d;
  box-shadow: 0 0 12px rgba(220,61,61,0.6);
  transform: translateY(4px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  flex: 1;
  padding: 0 18px;
}
.nav a {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #f0f0f0;
  transition: color 0.2s ease;
}
.nav a:hover,
.nav a.active { color: var(--accent); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #da403f, #bd2929);
  color: #fff;
  box-shadow: 0 8px 24px rgba(203,55,55,0.25);
}
.btn-secondary {
  border-color: rgba(240,178,54,0.7);
  color: var(--accent);
  background: rgba(240,178,54,0.08);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: white;
  font-size: 1.2rem;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.12) 50%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  gap: 32px;
  align-items: end;
  padding: 100px 0 74px;
}
.hero-copy p {
  max-width: 680px;
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: #ddd;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.stat-card,
.glass-card,
.path-step,
.program-card,
.story-card,
.cta-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.program-card h3 {
  line-height: 1.05;
}

.program-age {
  display: block;          /* move to next line */
  margin-top: 10px;        /* spacing */
  font-size: 0.7em;        /* smaller than title */
  color: rgba(255,255,255,0.6); /* lighter */
  font-weight: 400;        /* less bold */
  letter-spacing: 0.08em;
}
.stat-card {
  padding: 22px 18px;
  border-radius: 14px;
  min-height: 120px;
}
.stat-card strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card span { color: #d6d6d6; font-size: 0.95rem; }
.hero-side {
  display: flex;
  justify-content: end;
  align-items: end;
}
.hero-panel {
  max-width: 330px;
  width: 100%;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  border: 1px solid rgba(240,178,54,0.28);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-panel ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.hero-panel li {
  padding-left: 16px;
  position: relative;
  color: #e4e4e4;
}
.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trade-card {
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover effect */
.trade-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}
.trade-card::before {
  transition: transform 0.5s ease;
}

.trade-card:hover::before {
  transform: scale(1.05);
}
.trade-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  z-index: 1;
  transition: transform 0.5s ease;	
}
.trade-card:hover::before {
  transform: scale(1.05);
}
.supporting-text {
  margin-top: 24px;
  text-align: center;
  color: #ddd;
  font-size: 1.05rem;
}
.pathway-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}
.path-step {
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  min-height: 220px;
}
.path-step .icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: rgba(240,178,54,0.12);
  border: 1px solid rgba(240,178,54,0.3);
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
}
.path-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(240,178,54,0.4);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 320px));
  justify-content: center;
  gap: 22px;
}
.outcome-box {
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,186,70,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  box-shadow: var(--shadow);
}
.outcome-box strong {
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  margin-bottom: 10px;
}
.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.partner {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: #f1f1f1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.partner img {
  transition: transform 0.3s ease;
}

.partner:hover img {
  transform: scale(1.03);
}
.partner a {
  display: block;
  cursor: pointer;
}
.program-grid,
.stories-grid,
.cta-grid,
.cities-grid {
  display: grid;
  gap: 24px;
}
.program-grid { grid-template-columns: repeat(2, 1fr); }
.stories-grid { grid-template-columns: repeat(3, 1fr); }
.cta-grid { grid-template-columns: repeat(4, 1fr); }
.cities-grid { grid-template-columns: repeat(2, 1fr); }
.program-card,
.story-card,
.city-card,
.cta-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.program-card,
.story-card,
.city-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.program-image,
.story-image,
.city-image {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.program-image::before,
.story-image::before,
.city-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.78));
}
.program-copy,
.story-copy,
.city-copy,
.cta-copy { padding: 24px; }
.program-tag,
.story-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta-card {
  padding: 28px 24px;
  text-align: center;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.cta-card .btn {
  align-self: center;
  min-width: 150px;
}
.footer {
  position: relative;
  padding: 70px 0 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,145,0,0.12), transparent 25%),
    linear-gradient(180deg, #080808, #050505);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,145,0,0.8), transparent);
  box-shadow: 0 0 18px rgba(255,145,0,0.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}
.footer h4 { font-size: 1.2rem; margin-bottom: 18px; }
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.footer-links a { color: #d3d3d3; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: #9f9f9f;
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .cards-4,
  .pathway-wrap,
  .partner-row,
  .stories-grid,
  .cta-grid,
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid,
  .cities-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { justify-content: start; }
  .path-step:not(:last-child)::after { display: none; }
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10,10,10,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .header-actions .btn-primary { display: none; }
  .hero-stats,
  .cards-4,
  .pathway-wrap,
  .outcomes-grid,
  .partner-row,
  .stories-grid,
  .cta-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero-grid { padding: 84px 0 56px; }
  h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  h2 { text-align: left; }
  .section-intro { text-align: left; margin-left: 0; margin-right: 0; }
  .footer-bottom { flex-direction: column; }
}


/* top menu inner pages */
.page-hero{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 110px 0 70px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.35)),
    var(--page-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 860px){
  .page-hero{
    min-height: 380px;
    padding: 90px 0 50px;
  }
}
.page-hero .container{max-width:980px}
.breadcrumbs{font-size:.9rem;text-transform:uppercase;letter-spacing:.09em;color:#f0c66b;margin-bottom:14px}
.page-hero p{max-width:760px;color:#ddd;font-size:1.08rem}
.top-page-wrap{display:grid;gap:32px}
.content-block,.feature-card,.cta-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  border-radius:18px;
}
.content-block,.feature-card,.cta-panel{padding:30px}
.content-grid-2,.content-grid-3{display:grid;gap:22px}
.content-grid-2{grid-template-columns:repeat(2,1fr)}
.content-grid-3{grid-template-columns:repeat(3,1fr)}
.image-banner{
  min-height:360px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  background-size:cover;
  background-position:center;
}
.image-banner::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(58,34,15,.14), rgba(0,0,0,.78));
}
.overlay-copy{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:26px;
  z-index:1;
}
.overlay-copy p{color:#e5e5e5;margin:0}
.page-copy{
  display:grid;
  gap:18px;
}
.page-copy p{margin:0;color:#d0d0d0}
.page-copy strong{color:#f5f5f5}
.page-cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:34px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(240,178,54,.12), rgba(255,106,0,.08));
  border:1px solid rgba(240,178,54,.18);
}
.page-cta p{margin:0;max-width:680px}
.nav ul{list-style:none;display:flex;align-items:center;justify-content:center;gap:clamp(18px,2vw,34px);margin:0;padding:0}
.nav li{margin:0;padding:0}
.header-actions .btn-primary{display:inline-flex !important}
@media (max-width:1100px){
  .content-grid-2,.content-grid-3{grid-template-columns:1fr}
}
@media (max-width:860px){
  .header-inner{gap:12px;align-items:center}
  .logo{font-size:1.8rem}
  .header-actions{margin-left:auto;gap:8px}
  .header-actions .btn{min-height:42px;padding:0 14px;font-size:.78rem;letter-spacing:.04em;white-space:nowrap}
  .menu-toggle{width:42px;height:42px;flex:0 0 42px}
  .page-cta{flex-direction:column;align-items:flex-start}
}
@media (max-width:640px){
  .header-actions .btn{min-height:40px;padding:0 10px;font-size:.72rem}
  .logo{font-size:1.55rem}
}


/* updated logo + warmer image blend */
.logo{
  display:flex;
  align-items:center;
  white-space:nowrap;
}
.logo img{
  display:block;
  height:58px;
  width:auto;
  object-fit:contain;
}
@media (max-width: 860px){
  .logo img{height:48px;}
}
@media (max-width: 640px){
  .logo img{height:42px;}
}


/* improved logo rendering */
.logo img{
  height:52px;
  width:auto;
  image-rendering:auto;
}
@media (max-width:860px){
  .logo img{height:44px;}
}
@media (max-width:640px){
  .logo img{height:38px;}
}


/* wordpress compatibility */
.nav ul{list-style:none;display:flex;align-items:center;justify-content:center;gap:clamp(18px,2vw,34px);margin:0;padding:0}
.nav li{margin:0;padding:0}
.nav li.current-menu-item > a,
.nav li.current_page_item > a,
.nav li.current_page_parent > a,
.nav li.current-menu-ancestor > a{color:var(--accent)}
.custom-logo-link{display:inline-flex;align-items:center}
@media (max-width:860px){
  .nav ul{display:flex;flex-direction:column;align-items:stretch;gap:14px}
}
.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  text-decoration: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 60%,
    rgba(0,0,0,0.12) 100%
  );
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}

/* ABOUT PAGE: TEAM + BOARD */
.team-section,
.board-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.team-section .container,
.board-section .container {
  max-width: 1280px;
}

.team-section .about-section-head,
.board-section .about-section-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.team-section .about-section-head .eyebrow,
.board-section .about-section-head .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.team-section .about-section-head h2,
.board-section .about-section-head h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.96;
}

.team-section .about-section-head p,
.board-section .about-section-head p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

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

.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 48px 24px 40px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,178,54,0.25);
}

.team-image {
  width: 152px;
  height: 152px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

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

.team-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1;
  text-align: center;
}

.team-card .role {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #d0d0d0;
  font-weight: 600;
}

.team-card .company {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #a8a8a8;
}

.linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 12px;
  border-radius: 4px;
  background: #0a66c2;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.about-person-website {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 12px;
  border-radius: 4px; /* same as LinkedIn */
  background: #0a66c2;
  color: #fff;
  text-decoration: none;
}

/* make icon more prominent */
.about-person-website svg {
  width: 22px;   /* bigger than before */
  height: 22px;
  display: block;
}

/* hover */
.about-person-website:hover {
  background: #004182;
}

.bio-link {
  display: inline-block;
  margin-top: 10px;
  color: #f0f0f0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .team-section,
  .board-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .team-section .about-section-head,
  .board-section .about-section-head {
    margin-bottom: 32px;
  }

  .team-section .about-section-head h2,
  .board-section .about-section-head h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 1;
  }

  .team-section .about-section-head p,
  .board-section .about-section-head p {
    font-size: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* ABOUT PEOPLE SECTIONS - ISOLATED FIX */
.team-section .container,
.board-section .container {
  max-width: 1280px;
}

.about-people-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center !important;
}

.about-people-head .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.about-people-head h2 {
  margin: 0 0 18px;
  text-align: center !important;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.96;
}

.about-people-head p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center !important;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

.about-people-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 34px !important;
}

.about-person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  padding: 42px 24px 36px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  text-align: center !important;
  overflow: hidden;
}

.about-person-image {
  width: 152px !important;
  height: 152px !important;
  min-width: 152px;
  min-height: 152px;
  margin: 0 auto 24px;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: rgba(255,255,255,0.04);
  flex: 0 0 152px;
}

.about-person-image img,
.about-person-image .attachment-medium_large,
.about-person-image .wp-post-image {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 50% !important;
}

.about-person-copy {
  width: 100%;
  text-align: center !important;
}

.about-person-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1;
  text-align: center !important;
}

.about-person-role {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #d0d0d0;
  font-weight: 600;
}

.about-person-company {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #a8a8a8;
}

.about-person-linkedin {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 12px;
  border-radius: 4px;
  background: #0a66c2;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.about-person-bio {
  display: inline-block;
  margin-top: 10px;
  color: #f0f0f0 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .about-people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .about-people-head {
    margin-bottom: 28px;
    text-align: left !important;
  }

  .about-people-head h2 {
    text-align: left !important;
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 1;
  }

  .about-people-head p {
    margin: 0;
    text-align: left !important;
    font-size: 1rem;
  }

  .about-people-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-person-card {
    padding: 28px 20px 24px;
  }

  .about-person-image {
    width: 132px !important;
    height: 132px !important;
    min-width: 132px;
    min-height: 132px;
    flex-basis: 132px;
  }
}
/* BOARD OF DIRECTORS PAGE - ISOLATED */
.bod-page .container {
  width: min(1280px, calc(100% - 32px));
}

.bod-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.bod-head .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.bod-head h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.96;
}

.bod-head p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

.bod-bios-section {
  position: relative;
}

.bod-bio-list {
  display: grid;
  gap: 28px;
}

.bod-bio-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  scroll-margin-top: 120px;
}

.bod-bio-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.bod-bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.bod-bio-content h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1;
}

.bod-bio-role {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #d8d8d8;
}

.bod-bio-company {
  margin: 0 0 18px;
  color: #b7b7b7;
}

.bod-bio-text p {
  margin: 0 0 16px;
  color: #d0d0d0;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .bod-bio-item {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .bod-bio-image {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 860px) {
  .bod-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .bod-head h2 {
    text-align: left;
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 1;
  }

  .bod-head p {
    margin: 0;
    text-align: left;
    font-size: 1rem;
  }

  .bod-bio-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .bod-bio-media {
    display: flex;
    justify-content: center;
  }

  .bod-bio-image {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 1024px) {
  .about-person-card,
  .about-person-copy,
  .about-person-copy h3,
  .about-person-role,
  .about-person-company,
  .about-person-linkedin,
  .about-person-bio,
  .bod-card,
  .bod-card-copy,
  .bod-card-copy h3,
  .bod-role,
  .bod-company,
  .bod-link,
  .bod-bio-content h3,
  .bod-bio-role,
  .bod-bio-company {
    text-align: center !important;
  }

  .bod-bio-text {
    text-align: left !important;
  }

  .bod-bio-text p {
    text-align: left !important;
  }

  .bod-bio-text p:first-child:last-child {
    text-align: center !important;
  }
}


/* OUR PROGRAMS PAGE */

/* OUR PROGRAMS PAGE */
.programs-hero .container {
  max-width: 1080px;
}

.programs-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  max-width: 860px;
}

.programs-stat {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 22px 18px;
}

.programs-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.programs-stat span {
  color: #d8d8d8;
  font-size: 0.95rem;
}

.programs-intro-wrap {
  display: grid;
  gap: 28px;
}

.programs-intro-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 34px;
}

.programs-intro-card h2 {
  text-align: left;
  margin-bottom: 14px;
}

.programs-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.programs-pillar {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 26px;
}

.programs-pillar-num {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.programs-pillar h3 {
  margin-bottom: 10px;
}

.programs-section-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.programs-feature-grid {
  display: grid;
  gap: 28px;
}

.program-feature-card {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}

.program-feature-card--reverse {
  grid-template-columns: 1fr 1.08fr;
}

.program-feature-card--reverse .program-feature-media {
  order: 2;
}

.program-feature-card--reverse .program-feature-copy {
  order: 1;
}

.program-feature-media {
  min-height: 430px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.program-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.42));
}

.program-feature-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-subtitle {
  color: #f0f0f0;
  margin-bottom: 16px;
  font-weight: 600;
}

.program-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.program-points li {
  position: relative;
  padding-left: 16px;
  color: #d7d7d7;
}

.program-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.programs-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.programs-outcome-box {
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,186,70,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  box-shadow: var(--shadow);
}

.programs-outcome-box strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1;
}

.programs-quote-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.programs-quote-media {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.programs-quote-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.36));
}

.programs-quote-copy {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.programs-quote-copy h2 {
  text-align: left;
}

@media (max-width: 1100px) {
  .programs-hero-stats,
  .programs-pillars,
  .programs-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .program-feature-card,
  .program-feature-card--reverse,
  .programs-quote-panel {
    grid-template-columns: 1fr;
  }

  .program-feature-card--reverse .program-feature-media,
  .program-feature-card--reverse .program-feature-copy {
    order: initial;
  }

  .program-feature-media,
  .programs-quote-media {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .programs-intro-card,
  .program-feature-copy,
  .programs-quote-copy {
    padding: 24px;
  }

  .programs-section-head {
    text-align: left;
    margin-bottom: 28px;
  }

  .programs-section-head h2 {
    text-align: left;
  }
}


/* SINGLE PROGRAM PAGE */
.single-program-hero .container {
  max-width: 1000px;
}

.single-program-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.single-program-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.single-highlight-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.single-highlight-card strong {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.single-program-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.single-program-gallery-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.03);
}

.single-program-gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.single-program-media-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.single-program-media-copy {
  padding: 10px 0;
}

.single-program-media-copy h2 {
  text-align: left;
}

.single-program-video-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: #000;
}

.single-program-video-wrap iframe {
  width: 100%;
  min-height: 420px;
  display: block;
}

.single-program-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.single-program-stat {
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,186,70,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.single-program-stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  color: var(--accent);
  font-size: 1.7rem;
  margin-bottom: 10px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .single-program-highlights,
  .single-program-gallery,
  .single-program-stats {
    grid-template-columns: 1fr;
  }

  .single-program-media-panel {
    grid-template-columns: 1fr;
  }

  .single-program-video-wrap iframe {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .single-program-head {
    text-align: left;
    margin-bottom: 28px;
  }

  .single-program-head h2 {
    text-align: left;
  }

  .single-program-video-wrap iframe {
    min-height: 240px;
  }
}


/*contact us page*/
/* CONTACT PAGE */
/*contact us page*/
/* CONTACT PAGE */
.contact-hero .container {
  max-width: 980px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-info-panel,
.contact-form-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 34px;
}

.contact-info-panel h2,
.contact-form-panel h2 {
  text-align: left;
  margin-bottom: 14px;
}

.contact-intro,
.contact-form-intro {
  margin-bottom: 28px;
  color: #d6d6d6;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-info-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: #f1f1f1;
  margin-bottom: 6px;
}

.contact-info-card a {
  color: var(--accent);
  font-weight: 600;
  word-break: break-word;
}

.contact-form-wrap {
  margin-top: 10px;
}

/* CONTACT FORM 7 styling */
.contact-form-wrap .wpcf7 {
  width: 100%;
}

.contact-form-wrap .wpcf7 form {
  display: grid;
  gap: 16px;
}

.contact-form-wrap .wpcf7 label {
  display: block;
  color: #f3f3f3;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 input[type="tel"],
.contact-form-wrap .wpcf7 input[type="url"],
.contact-form-wrap .wpcf7 textarea,
.contact-form-wrap .wpcf7 select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  color: #fff;
  font: inherit;
  box-shadow: none;
}

.contact-form-wrap .wpcf7 textarea {
  min-height: 180px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form-wrap .wpcf7 input::placeholder,
.contact-form-wrap .wpcf7 textarea::placeholder {
  color: #a9a9a9;
}

.contact-form-wrap .wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #da403f, #bd2929);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(203,55,55,0.25);
}

.contact-form-wrap .wpcf7-spinner {
  margin-top: 10px;
}

.contact-form-wrap .wpcf7-not-valid-tip {
  color: #ff8f8f;
  font-size: 0.9rem;
  margin-top: 6px;
}

.contact-form-wrap .wpcf7-response-output {
  margin: 14px 0 0;
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
}

.contact-cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(240,178,54,.12), rgba(255,106,0,.08));
  border: 1px solid rgba(240,178,54,.18);
}

.contact-cta-copy h2 {
  text-align: left;
  margin-bottom: 10px;
}

/* CTA button fix only */
.contact-cta-panel .btn {
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  min-width: 160px;
  justify-content: center;
}

@media (max-width: 1100px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-info-panel,
  .contact-form-panel {
    padding: 24px;
  }

  .contact-cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .contact-cta-panel .btn {
    min-width: auto;
  }
}

/* UNL PRESS PAGE */
.unl-pres-hero .container {
  max-width: 980px;
}

.unl-pres-head {
  max-width: 860px;
  margin: 0 auto 38px;
  text-align: center;
}

.unl-news-list {
  display: grid;
  gap: 16px;
}

.unl-news-item {
  padding: 24px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.unl-news-source {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unl-news-item h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.unl-news-item h3 a {
  color: #f4f4f4;
  text-decoration: none;
}

.unl-news-item h3 a:hover {
  color: var(--accent);
}

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

.unl-featured-card {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

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

.unl-featured-copy {
  padding: 22px 22px 26px;
}

.unl-featured-copy h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: left;
}

.unl-featured-copy h3 a {
  color: #fff;
  text-decoration: none;
}

.unl-featured-copy h3 a:hover {
  color: var(--accent);
}

.unl-featured-source {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.unl-press-spotlight-wrap {
  background: transparent;
}

.unl-press-spotlight {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: start;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.unl-press-spotlight-media {
  overflow: hidden;
  border-radius: 18px;
}

.unl-press-spotlight-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.unl-press-spotlight-copy h2 {
  text-align: left;
  margin-bottom: 18px;
}

.unl-press-links {
  display: grid;
  gap: 12px;
}

.unl-press-links p {
  margin: 0;
  color: #d7d7d7;
  font-size: 1.02rem;
  line-height: 1.5;
}

.unl-press-links a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.unl-press-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .unl-featured-grid {
    grid-template-columns: 1fr;
  }

  .unl-press-spotlight {
    grid-template-columns: 1fr;
  }

  .unl-press-spotlight-media img {
    height: 360px;
  }
}

@media (max-width: 860px) {
  .unl-news-item,
  .unl-press-spotlight {
    padding: 24px;
  }

  .unl-pres-head {
    text-align: left;
    margin-bottom: 28px;
  }

  .unl-pres-head h2 {
    text-align: left;
  }

  .unl-featured-image img {
    height: 240px;
  }

  .unl-press-spotlight-media img {
    height: 280px;
  }
}


/* ABOUT PAGE - SIX CAPITALS + MOONSHOT */
.about-section-head--left {
  max-width: 860px;
  margin: 0 0 34px;
  text-align: left;
}

.about-section-head--left h2 {
  text-align: left;
  margin-bottom: 16px;
}

.about-section-head--left p {
  max-width: 760px;
  margin: 0;
  text-align: left;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-section-block,
.about-moonshot-panel {
  padding: 34px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.about-capitals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-capital-card,
.about-moonshot-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.about-capital-card h3,
.about-moonshot-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.about-capital-card p,
.about-moonshot-card p {
  color: #d2d2d2;
  line-height: 1.65;
}

.about-moonshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-moonshot-card .eyebrow {
  margin-bottom: 10px;
}

@media (max-width: 1100px) {
  .about-capitals-grid,
  .about-moonshot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .about-section-block,
  .about-moonshot-panel {
    padding: 24px;
  }

  .about-section-head--left {
    margin-bottom: 24px;
  }

  .about-section-head--left h2,
  .about-section-head--left p {
    text-align: left;
  }
}

.contact-info-cta {
  margin-top: 20px;
}

.contact-info-cta .btn {
  display: inline-flex;
}

/* PATHWAYS PAGE CLIENT UPDATE */
.content-grid-4.pathway-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.entertainment-trades-block h3 {
  text-align: left;
  margin-bottom: 12px;
}

.entertainment-trades-intro {
  margin-bottom: 22px;
  color: #d7d7d7;
}

.entertainment-trades-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.entertainment-trade-item {
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  color: #e3e3e3;
  line-height: 1.5;
}

.pathway-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pathway-card-lead {
  color: #f3f3f3;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.45;
}

.pathway-card-subtext {
  color: #cfcfcf;
  line-height: 1.6;
}

.pathways-industry-subtext {
  margin-top: 12px;
  color: #d7d7d7;
}

@media (max-width: 1100px) {
  .content-grid-4.pathway-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .content-grid-4.pathway-cards-grid,
  .entertainment-trades-grid {
    grid-template-columns: 1fr;
  }
}

/* Entertainment Industry Club page updates */
.program-overview-card{
  text-align:center;
  max-width:1600px;
  margin:0 auto;
  padding:48px 42px;
}

/* FIX: center PROGRAM OVERVIEW */
.program-overview-card .eyebrow{
  display:block;
  text-align:center;
  margin-bottom:20px;
}

/* FIX: reduce heading size to match Cohort section */
.program-overview-card h2{
  max-width:1200px;
  margin:0 auto 28px;
  text-align:center;
  font-size:clamp(2.2rem, 4vw, 3.8rem);
}

/* keep paragraphs readable */
.program-overview-card p{
  max-width:1200px;
  text-align:left;
  font-size:1.02rem;
  line-height:1.6;
  margin:0 auto 14px;
}

.career-readiness-box{
  max-width:1800px;
  margin:0 auto;
  padding:42px 48px;
}

.career-readiness-intro{
  margin:0 0 22px;
  color:#d8d8d8;
}

.program-bullets{
  margin:0;
  padding-left:28px;
  color:#f1f1f1;
}

.program-bullets li{
  margin:0 0 10px;
  color:#f1f1f1;
}

.program-bullets li:last-child{
  margin-bottom:0;
}

@media (max-width: 860px){
  .program-overview-card{
    padding:28px 22px;
  }

  /* FIX mobile heading too */
  .program-overview-card h2{
    font-size:clamp(2rem, 8vw, 3rem);
  }

  .career-readiness-box{
    padding:28px 22px;
  }
}

/* Spark Club static page updates */
.spark-overview-card{
  max-width: 1400px;
  margin: 0 auto;
  padding: 42px 40px;
}

.spark-overview-card .eyebrow{
  display: block;
  text-align: center;
  margin-bottom: 18px;
}

.spark-overview-card h2{
  max-width: 1100px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.spark-overview-card p{
  max-width: 1180px;
  margin: 0 0 6px;
  text-align: left;
  line-height: 1.45;
}

.spark-overview-card p:last-child{
  margin-bottom: 0;
}

.spark-highlights-grid{
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.spark-highlights-grid .single-highlight-card{
  min-height: 100%;
}

.spark-club-page .single-program-media-copy h2{
  text-align: left;
}

@media (max-width: 1100px){
  .spark-highlights-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px){
  .spark-overview-card{
    padding: 28px 22px;
  }

  .spark-overview-card h2{
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .spark-highlights-grid{
    grid-template-columns: 1fr;
  }
}

/* Disruptivator Club - vertical cards */
.disruptivator-highlights-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.disruptivator-highlights-grid .single-highlight-card{
  display: block;
  padding: 28px 24px;
}

.disruptivator-highlights-grid h3{
  margin-bottom: 14px;
}

.disruptivator-highlights-grid ul{
  margin-top: 10px;
  padding-left: 22px;
}

.disruptivator-highlights-grid li{
  margin-bottom: 10px;
  line-height: 1.5;
}

.disruptivator-highlights-grid li:last-child{
  margin-bottom: 0;
}

/* Slider */
.eic-slider{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,0.03);
}

.eic-slides{
  position:relative;
  min-height:600px;
}

.eic-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .6s ease, visibility .6s ease;
}

.eic-slide.active{
  opacity:1;
  visibility:visible;
  position:relative;
}

.eic-slide img{
  width:100%;
  height:600px;
  object-fit:cover;
  display:block;
}

.eic-slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:52px;
  height:52px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(0,0,0,0.42);
  color:#fff;
  font-size:1.4rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
  transition:background .2s ease, transform .2s ease;
}

.eic-slider-arrow:hover{
  background:rgba(0,0,0,0.62);
}

.eic-slider-prev{
  left:18px;
}

.eic-slider-next{
  right:18px;
}

.eic-slider-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  gap:10px;
}

.eic-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,0.45);
  cursor:pointer;
  padding:0;
  transition:transform .2s ease, background .2s ease;
}

.eic-dot.active{
  background:var(--accent);
  transform:scale(1.15);
}

@media (max-width: 860px){
  .eic-slides{
    min-height:320px;
  }

  .eic-slide img{
    height:320px;
  }

  .eic-slider-arrow{
    width:42px;
    height:42px;
    font-size:1.1rem;
  }

  .eic-slider-prev{
    left:10px;
  }

  .eic-slider-next{
    right:10px;
  }

  .eic-slider-dots{
    bottom:12px;
  }
}

/* social media icons footer*/
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  width: 36px;
  height: 36px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.socials a:hover {
  transform: translateY(-3px);
}

/* Brand colors on hover */
.socials a:hover:nth-child(1) { color: #E4405F; } /* Instagram */
.socials a:hover:nth-child(2) { color: #000000; } /* X */
.socials a:hover:nth-child(3) { color: #0A66C2; } /* LinkedIn */
.socials a:hover:nth-child(4) { color: #1877F2; } /* Facebook */

/* HOME PROGRAMS - 3 COLUMN ATTRACTIVE LINK CARDS */
.program-grid.program-grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.program-card.program-card-link,
a.program-card.program-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.program-card.program-card-link:hover,
a.program-card.program-card-link:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  border-color: rgba(240,178,54,0.24);
}

.program-card-link .program-image {
  min-height: 280px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.program-card-link .program-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.78));
  transition: background 0.35s ease, transform 0.45s ease;
}

.program-card-link:hover .program-image::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.66));
}

.program-card-link .program-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 24px 24px;
}

.program-card-link .program-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card-link h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.05;
}

.program-desc {
  color: #d5d5d5;
  line-height: 1.65;
  margin-bottom: 20px;
}

.program-desc p {
  margin: 0 0 12px;
  color: #d5d5d5;
}

.program-desc p:last-child {
  margin-bottom: 0;
}

.program-link-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.program-link-text::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.program-card-link:hover .program-link-text::after {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .program-grid.program-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .program-grid.program-grid-three {
    grid-template-columns: 1fr;
  }

  .program-card-link .program-image {
    min-height: 240px;
  }
}
