/* ================================================================
   DEYR UMBRELLA — Main Stylesheet
   Design: Dark Navy + Teal + Gold — Modern Premium
================================================================ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────────── */
:root {
  /* Colors */
  --navy:        #0B1220;
  --navy-mid:    #111827;
  --navy-light:  #1a2540;
  --teal:        #00C6A7;
  --teal-dark:   #00a88c;
  --gold:        #F5C842;
  --gold-dark:   #d4a81e;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --red:         #EF4444;
  --green:       #22C55E;

  /* Typography */
  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.15), 0 4px 8px rgba(0,0,0,.08);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.20);
  --shadow-teal: 0 8px 32px rgba(0,198,167,.25);

  /* Spacing */
  --container:   1200px;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    150ms;
  --dur-mid:     250ms;
  --dur-slow:    400ms;
}

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

/* ── Container ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
.text-hero     { font-size: clamp(1.25rem, 2.8vw, 2rem);   font-weight: 900; letter-spacing: -0.02em; }
.text-display  { font-size: clamp(2rem,   4vw, 3.5rem);  font-weight: 800; letter-spacing: -0.02em; }
.text-h1       { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
.text-h2       { font-size: clamp(1.5rem,  2.5vw, 2rem); font-weight: 700; }
.text-h3       { font-size: 1.25rem; font-weight: 600; }
.text-body-lg  { font-size: 1.125rem; line-height: 1.7; }
.text-body     { font-size: 1rem;     line-height: 1.65; }
.text-sm       { font-size: 0.875rem; }
.text-xs       { font-size: 0.75rem;  }
.text-caps     { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.text-teal     { color: var(--teal); }
.text-gold     { color: var(--gold); }
.text-white    { color: var(--white); }
.text-muted    { color: var(--gray-400); }
.text-center   { text-align: center; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 600; transition: all var(--dur-mid) var(--ease);
  white-space: nowrap; cursor: pointer; text-decoration: none; border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal); color: var(--navy); border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark); border-color: var(--teal-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-teal);
}
.btn-secondary {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,200,66,.35);
}
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--teal); border-color: transparent; padding-left: 0; padding-right: 0;
}
.btn-ghost:hover { color: var(--teal-dark); gap: 12px; }
.btn-sm  { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-icon { padding: 12px; border-radius: 50%; }

/* ── Badges ───────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  font-family: var(--font-head);
}
.badge-teal    { background: rgba(0,198,167,.15); color: var(--teal); }
.badge-gold    { background: rgba(245,200,66,.15); color: var(--gold-dark); }
.badge-navy    { background: var(--navy); color: var(--white); }
.badge-gray    { background: var(--gray-100); color: var(--gray-600); }
.badge-featured { background: var(--gold); color: var(--navy); }

/* ── Section Label ────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--teal);
}

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all var(--dur-mid) var(--ease); border: 1px solid var(--gray-200);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*    NAVIGATION                                                    */
/* ── ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(28px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.1);
  border-bottom: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 4px 24px rgba(0,0,0,0.15);
  transition: background var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease), border-color var(--dur-mid) var(--ease), backdrop-filter var(--dur-mid) var(--ease);
}
#site-nav.scrolled {
  background: rgba(11,18,32,0.75);
  backdrop-filter: blur(32px) saturate(200%) brightness(0.95);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(0.95);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 1.1rem; }
.nav-links {
  display: flex; align-items: center; gap: 4px; margin: 0 auto;
}
.nav-link {
  color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-link.active { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lang-switcher {
  display: flex; align-items: center; gap: 2px; background: rgba(255,255,255,0.08);
  border-radius: 50px; padding: 3px; border: 1px solid rgba(255,255,255,0.12);
}
.lang-btn {
  padding: 5px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.6); transition: all var(--dur-fast);
  font-family: var(--font-head);
}
.lang-btn.active, .lang-btn:hover { background: var(--teal); color: var(--navy); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 10px;
  cursor: pointer; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  transition: background var(--dur-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.18); }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: all var(--dur-mid) var(--ease); border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(11,18,32,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  padding: 12px 16px; font-size: 1rem; border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile-actions {
  display: flex; align-items: center; gap: 12px; margin-top: 16px; flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .nav-inner { justify-content: space-between; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-actions .lang-switcher { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}

/* ── ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*    HERO SECTION                                                  */
/* ── ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,198,167,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 20%, rgba(245,200,66,0.05) 0%, transparent 55%),
              linear-gradient(135deg, rgba(11, 18, 32, 0.85) 0%, rgba(17, 24, 39, 0.9) 100%);
}
.hero-slideshow {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, rgba(11, 18, 32, 0.3) 0%, rgba(11, 18, 32, 0.6) 100%);
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(0,198,167,0.1); border: 1px solid rgba(0,198,167,0.3);
  border-radius: 50px; margin-bottom: 28px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal); font-family: var(--font-head);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.65); max-width: 540px; margin-bottom: 32px; font-size: 0.95rem; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 64px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; background: transparent;
  border-radius: unset; overflow: visible;
  border: none;
}
.hero-stat {
  background: rgba(255,255,255,0.03); padding: 24px 20px;
  text-align: center; backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--dur-mid) var(--ease);
}
.hero-stat:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 198, 167, 0.15);
}
.hero-stat-num {
  display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--teal); line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 6px; font-weight: 500; }

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}

/* ── Page Hero (inner pages) ──────────────────────────────────── */
.page-hero {
  padding: 130px 0 80px; background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,198,167,0.08) 0%, transparent 70%),
              linear-gradient(135deg, #0B1220 0%, #1a2540 100%);
}
.page-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.6); max-width: 560px; }

/* ── Sections ─────────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); }
.section-gray { background: var(--gray-100); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--gray-600); }

/* ── Programs Grid ────────────────────────────────────────────── */
.programs-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.programs-grid .program-card { flex: 0 1 calc(33.333% - 20px); min-width: 280px; max-width: 420px; }
@media (max-width: 1024px) { .programs-grid .program-card { flex: 0 1 calc(50% - 14px); } }
@media (max-width: 640px)  { .programs-grid .program-card { flex: 1 1 100%; max-width: 100%; } }

.program-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: all var(--dur-mid) var(--ease); display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.program-card-image {
  aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100);
  position: relative;
}
.program-card-image img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--dur-slow) var(--ease); }
.program-card:hover .program-card-image img { transform: scale(1.05); }
.program-card-image .badge { position: absolute; top: 16px; left: 16px; }
.program-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-card-cat { color: var(--teal); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; font-family: var(--font-head); }
.program-card-title { font-size: 1.2rem; margin-bottom: 12px; color: var(--gray-800); }
.program-card-title a:hover { color: var(--teal); }
.program-card-excerpt { color: var(--gray-600); font-size: 0.925rem; line-height: 1.65; flex: 1; margin-bottom: 20px; }
.program-card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.program-stat { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: 1rem; }
.program-stat span { display: block; font-size: 0.72rem; color: var(--gray-400); font-weight: 500; }

/* ── News Grid ────────────────────────────────────────────────── */
.news-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.news-grid .news-card { flex: 0 1 calc(33.333% - 20px); min-width: 280px; max-width: 420px; }
@media (max-width: 1024px) { .news-grid .news-card { flex: 0 1 calc(50% - 14px); } }
@media (max-width: 640px)  { .news-grid .news-card { flex: 1 1 100%; max-width: 100%; } }

.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: all var(--dur-mid) var(--ease); display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.news-card-image {
  aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100);
}
.news-card-image img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--dur-slow) var(--ease); }
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.news-card-cat  { color: var(--teal); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-head); }
.news-card-date { color: var(--gray-400); font-size: 0.78rem; }
.news-card-title { font-size: 1.05rem; margin-bottom: 10px; color: var(--gray-800); line-height: 1.4; }
.news-card-title a:hover { color: var(--teal); }
.news-card-excerpt { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-footer { margin-top: auto; }

/* Featured news card */
.news-featured {
  grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
  transition: all var(--dur-mid) var(--ease);
}
.news-featured:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.news-featured .news-card-image { aspect-ratio: unset; height: 100%; min-height: 340px; background: var(--gray-100); }
.news-featured .news-card-image img { width: 100%; height: 100%; object-fit: contain; }
.news-featured .news-card-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.news-featured .news-card-title { font-size: 1.75rem; font-weight: 800; margin-bottom: 16px; }
.news-featured .news-card-excerpt { font-size: 1rem; -webkit-line-clamp: 4; margin-bottom: 24px; }
@media (max-width: 768px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured .news-card-image { min-height: 240px; }
  .news-featured .news-card-body { padding: 28px; }
  .news-featured .news-card-title { font-size: 1.35rem; }
}

/* ── Events Cards ─────────────────────────────────────────────── */
.events-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; }
.events-grid .event-card { flex: 0 1 calc(33.333% - 20px); min-width: 280px; max-width: 420px; }
@media (max-width: 1024px) { .events-grid .event-card { flex: 0 1 calc(50% - 14px); } }
@media (max-width: 640px)  { .events-grid .event-card { flex: 1 1 100%; max-width: 100%; } }

.event-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: all var(--dur-mid) var(--ease);
  display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-card-image { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.event-card-image img { width: 100%; height: 100%; object-fit: contain; transition: transform var(--dur-slow) var(--ease); }
.event-card:hover .event-card-image img { transform: scale(1.05); }
.event-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.event-date-badge {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--navy); color: var(--white); border-radius: var(--radius-sm);
  padding: 8px 14px; margin-bottom: 16px; width: fit-content;
}
.event-date-badge .month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); font-weight: 700; font-family: var(--font-head); }
.event-date-badge .day   { font-size: 1.5rem; font-weight: 800; line-height: 1; font-family: var(--font-head); }
.event-card-title { font-size: 1.1rem; margin-bottom: 8px; }
.event-card-title a:hover { color: var(--teal); }
.event-card-meta { display: flex; align-items: center; gap: 6px; color: var(--gray-400); font-size: 0.85rem; margin-bottom: 12px; }
.event-card-excerpt { color: var(--gray-600); font-size: 0.9rem; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.event-past .event-card-image { filter: grayscale(30%); }
.event-past-badge { background: var(--gray-600); }

/* ── Filter Bar ───────────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px; font-size: 0.875rem; font-weight: 600;
  border: 1.5px solid var(--gray-200); color: var(--gray-600);
  background: var(--white); cursor: pointer; transition: all var(--dur-fast);
  font-family: var(--font-head);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--navy); }

/* ── Pagination ───────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; }
.page-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); color: var(--gray-600); font-weight: 600;
  font-size: 0.9rem; transition: all var(--dur-fast); background: var(--white);
}
.page-btn:hover { border-color: var(--teal); color: var(--teal); }
.page-btn.active { background: var(--teal); border-color: var(--teal); color: var(--navy); }
.page-btn[disabled] { opacity: 0.4; pointer-events: none; }

/* ── Article / Single Post ────────────────────────────────────── */
.article-hero { padding: 120px 0 60px; background: var(--navy); }
.article-hero .container { position: relative; z-index: 1; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 20px; }
.article-title { color: var(--white); max-width: 820px; margin-bottom: 20px; }
.article-sub  { color: rgba(255,255,255,0.6); max-width: 700px; }
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; margin-top: -60px; position: relative; z-index: 2; padding-bottom: 80px; }
@media (max-width: 1024px) { .article-layout { grid-template-columns: 1fr; } }
.article-cover {
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 40px;
  box-shadow: var(--shadow-xl); max-height: 550px; background: var(--gray-100);
}
.article-cover img { width: 100%; max-height: 550px; object-fit: contain; display: block; margin: 0 auto; }
.article-body {
  font-size: 1.05rem; line-height: 1.8; color: var(--gray-800);
  background: var(--white); padding: 48px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.article-body h2, .article-body h3 { font-family: var(--font-head); margin: 32px 0 16px; color: var(--navy); }
.article-body p  { margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; list-style: initial; }
.article-body img { border-radius: var(--radius-md); margin: 24px 0; }
.article-sidebar { position: sticky; top: 100px; height: fit-content; }
.sidebar-widget {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); margin-bottom: 24px;
}
.sidebar-widget h3 { font-size: 1rem; margin-bottom: 16px; color: var(--navy); padding-bottom: 12px; border-bottom: 2px solid var(--gray-100); }
@media (max-width: 640px) { .article-body { padding: 24px; } }

/* ── Team Grid ────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-card-avatar {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 16px; background: var(--gray-100);
  border: 3px solid var(--gray-200); transition: border-color var(--dur-fast);
}
.team-card:hover .team-card-avatar { border-color: var(--teal); }
.team-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card-role { font-size: 0.875rem; color: var(--teal); font-weight: 600; }

/* ── Stats Counter ────────────────────────────────────────────── */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; background: transparent; padding: 16px 0; }
.stats-bar-item {
  background: var(--white); padding: 40px 24px; text-align: center;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--dur-mid) var(--ease);
}
.stats-bar-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.stats-bar-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stats-bar-label { font-size: 0.875rem; color: var(--gray-600); margin-top: 8px; font-weight: 500; }
@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .stats-bar { grid-template-columns: 1fr; } }

/* ── Timeline ─────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 48px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 8px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--teal), transparent);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: ''; position: absolute; left: -42px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--teal);
  border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--teal);
}
.timeline-year {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal);
  margin-bottom: 8px;
}
.timeline-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-desc  { color: var(--gray-600); font-size: 0.925rem; line-height: 1.65; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(0,198,167,0.12) 0%, transparent 60%);
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 40px; }

/* ── Forms ────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200); background: var(--white);
  font-size: 1rem; color: var(--gray-800);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,198,167,0.12); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%2394A3B8' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.form-error { font-size: 0.8rem; color: var(--red); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-section {
  background: var(--white); border-radius: var(--radius-xl); padding: 48px;
  box-shadow: var(--shadow-md); max-width: 720px;
}
@media (max-width: 640px) { .form-section { padding: 28px 20px; } }

/* Alert */
.alert {
  padding: 14px 18px; border-radius: var(--radius-md); font-size: 0.9rem;
  margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px;
  font-weight: 500;
}
.alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #15803d; }
.alert-error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #b91c1c; }
.alert-info    { background: rgba(0,198,167,.1);  border: 1px solid rgba(0,198,167,.3);  color: var(--teal-dark); }

/* ── Search Bar ───────────────────────────────────────────────── */
.search-form { display: flex; gap: 0; max-width: 600px; margin: 0 auto 48px; }
.search-input {
  flex: 1; padding: 14px 20px; border: 1.5px solid var(--gray-200);
  border-right: none; border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: 1rem; outline: none;
}
.search-input:focus { border-color: var(--teal); }
.search-btn {
  padding: 14px 24px; background: var(--teal); color: var(--navy); border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0; font-weight: 700; cursor: pointer;
  font-family: var(--font-head); font-size: 0.95rem; transition: background var(--dur-fast);
}
.search-btn:hover { background: var(--teal-dark); }
.search-result-item {
  padding: 24px; border-radius: var(--radius-md); background: var(--white);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); margin-bottom: 16px;
  transition: all var(--dur-fast);
}
.search-result-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.search-type {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-family: var(--font-head);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; display: inline-block;
}
.search-type-news    { background: rgba(0,198,167,.12); color: var(--teal); }
.search-type-program { background: rgba(245,200,66,.12); color: var(--gold-dark); }
.search-type-event   { background: rgba(11,18,32,.08); color: var(--navy); }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; }
@media (max-width: 1024px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-card {
  background: var(--navy); border-radius: var(--radius-xl); padding: 40px;
  color: var(--white); height: fit-content;
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(0,198,167,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--teal);
  font-size: 20px;
}
.contact-info-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 4px; font-family: var(--font-head); }
.contact-info-value { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* ── Footer ───────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy); color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-top {
  padding: 72px 0 48px;
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px;
}
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin: 16px 0 24px; max-width: 300px; line-height: 1.7; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo img { height: 36px; }
.footer-logo-text { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--white); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color var(--dur-fast); }
.footer-link:hover { color: var(--teal); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  transition: all var(--dur-fast); font-size: 18px;
}
.footer-social-btn:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.footer-bottom {
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--dur-fast); }
.footer-bottom-links a:hover { color: var(--teal); }

/* ── Newsletter Bar ───────────────────────────────────────────── */
.newsletter-bar {
  background: linear-gradient(135deg, rgba(0,198,167,0.12) 0%, rgba(0,198,167,0.06) 100%);
  border-top: 1px solid rgba(0,198,167,0.2); border-bottom: 1px solid rgba(0,198,167,0.2);
  padding: 40px 0;
}
.newsletter-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.newsletter-text h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.newsletter-text p  { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.newsletter-form-inline { display: flex; gap: 0; flex: 1; min-width: 300px; max-width: 480px; }
.newsletter-form-inline input {
  flex: 1; padding: 12px 18px; border: 1.5px solid rgba(255,255,255,0.15);
  border-right: none; border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: rgba(255,255,255,0.06); color: var(--white); font-size: 0.95rem; outline: none;
}
.newsletter-form-inline input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form-inline input:focus { border-color: var(--teal); }
.newsletter-form-inline button {
  padding: 12px 24px; background: var(--teal); color: var(--navy);
  border-radius: 0 var(--radius-md) var(--radius-md) 0; font-weight: 700;
  font-family: var(--font-head); font-size: 0.875rem; cursor: pointer; border: none;
  transition: background var(--dur-fast); white-space: nowrap;
}
.newsletter-form-inline button:hover { background: var(--teal-dark); }

/* ── About Page ───────────────────────────────────────────────── */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; } }
.mission-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.mission-image img { width: 100%; height: 100%; object-fit: contain; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  border-left: 4px solid var(--teal); transition: all var(--dur-mid);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 28px; margin-bottom: 16px; color: var(--teal); }
.value-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-desc  { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .values-grid { grid-template-columns: 1fr; } }

/* ── 404 Page ─────────────────────────────────────────────────── */
.error-page {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.error-code { font-family: var(--font-head); font-size: 8rem; font-weight: 900; color: var(--teal); line-height: 1; opacity: 0.6; }
.error-title { font-size: 2rem; color: var(--navy); margin: 16px 0 12px; }
.error-sub   { color: var(--gray-600); max-width: 480px; margin: 0 auto 32px; }

/* ── Utilities ────────────────────────────────────────────────── */
.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.mb-8    { margin-bottom: 8px; }
.mb-16   { margin-bottom: 16px; }
.mb-24   { margin-bottom: 24px; }
.mb-32   { margin-bottom: 32px; }
.mb-48   { margin-bottom: 48px; }
.mt-8    { margin-top: 8px; }
.mt-16   { margin-top: 16px; }
.mt-24   { margin-top: 24px; }
.mt-32   { margin-top: 32px; }
.mt-48   { margin-top: 48px; }
.gap-16  { gap: 16px; }
.d-flex  { display: flex; }
.align-center   { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-full  { width: 100%; }
.max-w-2xl { max-width: 672px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.hidden  { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Animations ───────────────────────────────────────────────── */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.fade-in-up  { animation: fadeInUp 0.6s var(--ease) both; }
.fade-in     { animation: fadeIn 0.5s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* ── Scroll Reveal (JS-driven) ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── Empty State ──────────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 80px 24px;
  color: var(--gray-400);
}
.empty-state-icon { font-size: 64px; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 1.25rem; color: var(--gray-600); margin-bottom: 8px; }
.art-related-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--dur-fast), transform var(--dur-fast);
  text-decoration: none;
  color: var(--navy);
}

/* Ensure info takes remaining space */
.art-related-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .art-related-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .art-related-thumb {
    margin-bottom: 8px;
  }
  .art-related-info {
    align-items: center;
  }
  .art-related-cat, .art-related-title, .art-related-date {
    font-size: 1rem; /* increase for mobile */
  }
}

/* ── Material Symbols ─────────────────────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined'; font-weight: normal;
  font-style: normal; font-size: 24px; line-height: 1; letter-spacing: normal;
  text-transform: none; display: inline-block; white-space: nowrap;
  word-wrap: normal; direction: ltr; -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* ── Article Gallery Slider ───────────────────────────────────── */
.article-gallery {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  user-select: none;
}
.gallery-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
  pointer-events: none;
}
.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(11,18,32,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.gallery-btn:hover { background: var(--teal); transform: translateY(-50%) scale(1.1); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px;
  z-index: 10;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.gallery-dot.active { background: var(--teal); transform: scale(1.35); }
.gallery-counter {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(11,18,32,0.6);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.78rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  z-index: 10;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .gallery-track { aspect-ratio: 4 / 3; }
  .gallery-btn { width: 36px; height: 36px; font-size: 0.875rem; }
}

/* ── Article Page ──────────────────────────────────────────────── */

/* Hero header */
.art-hero {
  position: relative;
  background: var(--navy);
  padding: 96px 0 56px;
  overflow: hidden;
}
.art-hero-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.art-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 60%, rgba(0,198,167,0.09) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 80% 20%, rgba(245,200,66,0.05) 0%, transparent 60%);
}
.art-hero-inner {
  position: relative; z-index: 1;
  max-width: 860px;
}

/* Breadcrumb */
.art-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.art-breadcrumb a {
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-fast);
}
.art-breadcrumb a.art-related-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  transition: background var(--dur-fast), transform var(--dur-fast);
  text-decoration: none;
  color: var(--navy);
}
.art-bc-sep { opacity: 0.3; }
.art-bc-current { color: rgba(255,255,255,0.7); }

/* Meta row */
.art-meta-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 20px;
}
.art-date {
  color: rgba(255,255,255,0.45);
  font-size: 0.83rem;
  display: flex; align-items: center;
}

/* Title */
.art-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 20px;
}

/* Lead / excerpt */
.art-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  padding-left: 18px;
  border-left: 3px solid var(--teal);
  margin: 0;
}

/* Layout */
.art-container { padding-top: 0; padding-bottom: 80px; }
.art-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  margin-top: -32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .art-layout { grid-template-columns: 1fr; }
  .art-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .art-sidebar { grid-template-columns: 1fr; }
}

/* Main content area */
.art-main {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.article-gallery { margin-bottom: 0; border-radius: 0; box-shadow: none; }
.art-cover {
  width: 100%;
  max-height: 550px;
  overflow: hidden;
  background: var(--gray-100);
}
.art-cover img { width: 100%; max-height: 550px; object-fit: contain; display: block; margin: 0 auto; }

/* Article body typography */
.art-body {
  padding: 36px 40px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-700);
}
.art-body p { margin-bottom: 1.4em; }
.art-body p:first-child::first-letter {
  float: left;
  font-size: 3.2rem;
  line-height: 0.85;
  font-weight: 900;
  font-family: var(--font-head);
  color: var(--teal);
  margin: 4px 10px 0 0;
}
.art-body h2 { font-size: 1.35rem; color: var(--navy); margin: 2em 0 0.6em; }
.art-body h3 { font-size: 1.15rem; color: var(--navy); margin: 1.6em 0 0.5em; }
.art-body a { color: var(--teal); text-decoration: underline; text-decoration-color: rgba(0,198,167,0.3); }
.art-body a:hover { text-decoration-color: var(--teal); }
.art-body ul, .art-body ol { padding-left: 1.4em; margin-bottom: 1.4em; }
.art-body li { margin-bottom: 0.5em; }
@media (max-width: 640px) {
  .art-body { padding: 24px 20px; }
}

/* Share bar */
.art-share {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  padding: 20px 40px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
.art-share-label {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray-500);
  flex-shrink: 0;
}
.art-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.art-share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  font-family: var(--font-head);
  transition: transform var(--dur-fast), opacity var(--dur-fast);
  text-decoration: none;
}
.art-share-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.art-share-fb { background: #1877F2; color: #fff; }
.art-share-tw { background: #1da1f2; color: #fff; }
.art-share-wa { background: #25D366; color: #fff; }
@media (max-width: 640px) {
  .art-share { padding: 16px 20px; }
}

/* Sidebar */
.art-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.art-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.art-widget-head {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 20px 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.art-widget-icon { font-size: 1rem; }

/* Related articles */
.art-related-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--dur-fast), transform var(--dur-fast);
  text-decoration: none;
  color: var(--navy);
}

.art-related-item:last-child { border-bottom: none; }
.art-related-item:hover { background: var(--gray-100); transform: translateY(-2px); }
.art-related-thumb {
  width: 68px; height: 52px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden; background: var(--gray-100);
}
.art-related-thumb img { width: 100%; height: 100%; object-fit: contain; }
.art-related-cat {
  font-size: 0.8rem; /* larger */
  font-weight: 800; /* bolder */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 4px;
}
.art-related-title {
  font-size: 0.95rem; /* larger */
  font-weight: 700; /* bolder */
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 6px;
}
.art-related-date {
  font-size: 0.78rem; /* slightly larger */
  color: var(--gray-600); /* higher contrast */
}

/* CTA Widget */
.art-widget-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2040 100%);
  border-color: rgba(255,255,255,0.06);
  text-align: center;
  padding: 28px 24px;
}
.art-cta-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.art-widget-cta h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.art-widget-cta p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }

/* ── Modern Premium Visual Enhancements ───────────────────────── */
.text-hero em,
.text-display em,
.hero h1 em,
.cta-banner h2 em {
  background: linear-gradient(135deg, var(--teal) 0%, #00e5c1 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  font-weight: 800;
}

/* Button slide transitions and animations */
.btn-primary:hover .material-symbols-outlined {
  transform: translateX(4px) scale(1.1);
  transition: transform var(--dur-fast) var(--ease);
}
.btn-outline:hover .material-symbols-outlined {
  transform: translateX(4px) scale(1.1);
  transition: transform var(--dur-fast) var(--ease);
}
.material-symbols-outlined {
  transition: transform var(--dur-fast) var(--ease);
}

/* Card glassmorphic micro-shadows & border lifts */
.program-card, .news-card, .event-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.program-card:hover, .news-card:hover, .event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 18, 32, 0.08);
  border-color: rgba(0, 198, 167, 0.4);
}
