/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1e4a4b;
  --primary-light: #2f6b5e;
  --secondary: #6b8f7c;
  --accent: #e8b84b;
  --bg-light: #fdfdf9;
  --bg-alt: #f2f7f2;
  --text-dark: #1e2f2d;
  --text-muted: #4a5e5b;
  --border-light: #d4e3d4;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--primary-light); }

/* ===== HEADER & NAVIGATION ===== */
header {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  background-color: #018EBC;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.logo span {
  font-weight: 400;
  color: var(--secondary);
}

a.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 76px;
  width: auto;
  display: block;
}

.logo-desktop { border-radius: 6px; }
.logo-mobile  { display: none; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  border-bottom-color: white;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary { background-color: var(--primary); color: white; }
.btn-primary:hover { background-color: var(--primary-light); color: white; }

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover { background-color: var(--primary); color: white; }

.btn-hero-outline {
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.btn-hero-outline:hover { background-color: white; color: var(--primary); border-color: white; }

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--primary); background-color: var(--bg-alt); }

.btn-footer {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-footer:hover { background-color: white; color: var(--primary); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-top: 16px;
}
.link-arrow i { transition: transform 0.2s ease; }
.link-arrow:hover i { transform: translateX(4px); }

/* ===== HERO SECTION ===== */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e8f0e8 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 35, 0.62);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 820px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  color: white;
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background-color: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.section-footer {
  text-align: center;
  margin-top: 48px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background-color: var(--primary);
  padding: 40px 0;
}

.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}

.strip-stat { padding: 8px; }

.strip-stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.strip-stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  display: block;
}

/* ===== ABOUT SPLIT (Homepage) ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.about-split-text h2 { color: var(--primary); margin-bottom: 4px; }
.about-split-text .section-subtitle { margin-bottom: 20px; }

/* ===== ABOUT TEASER ===== */
.about-teaser {
  max-width: 800px;
  margin: 0 auto;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-dark);
}

/* ===== SPOTLIGHT CARD ===== */
.spotlight-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  border-left: 5px solid var(--accent);
}

.spotlight-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
}

.spotlight-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
  border-top: 4px solid var(--accent);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.card h3 { color: var(--primary); }

/* ===== TWO COLUMN ===== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.vision-box, .mission-box {
  padding: 32px;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
}

.vision-box  { border-top: 4px solid var(--accent); }
.mission-box { border-top: 4px solid var(--primary); }

.center-text {
  text-align: center;
  margin-top: 32px;
}

/* ===== NEWSLETTER ===== */
.newsletter-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--accent);
}

.newsletter-box h2 { color: var(--primary); }

.newsletter-box > p {
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 8px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin: 24px 0 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 40px;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 0px 0 32px;
}

.footer-tagline {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-tagline p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
}

.footer-cta {
  text-align: center;
  margin-bottom: 48px;
}

.footer-cta h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 24px;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e8f0e8 100%);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 35, 0.58);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1  { color: white; margin-bottom: 12px; }
.page-subtitle   { font-size: 1.25rem; color: rgba(255,255,255,0.85); }

/* ===== CONTENT BLOCK ===== */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block.center-text { text-align: center; }

/* ===== TWO COLUMN FULL (About Page) ===== */
.two-column-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-box-full, .mission-box-full {
  padding: 48px 32px;
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.vision-box-full  { border-top: 6px solid var(--accent); }
.mission-box-full { border-top: 6px solid var(--primary); }

.vision-icon, .mission-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.vision-icon  { color: var(--accent); }
.mission-icon { color: var(--primary); }

.vision-box-full p, .mission-box-full p { font-size: 1.1rem; }

/* ===== COMMUNITY STATS ===== */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.community-stat {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted);
}

.community-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== PILLAR CARDS (What We Do Page) ===== */
.pillar-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.pillar-icon {
  font-size: 2.5rem;
  color: var(--primary);
  background: var(--bg-alt);
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.pillar-header h2 { margin: 0; color: var(--primary); }

.pillar-description {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.impact-box {
  background: var(--bg-alt);
  padding: 24px 28px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.impact-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary);
}

.impact-list { list-style: none; padding: 0; }

.impact-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-muted);
}

.impact-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ===== CLUB STORY ===== */
.club-story {
  margin-top: 28px;
  padding: 28px 32px;
  background: white;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.club-story-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 10px;
}

.club-story h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ===== FORM CARDS (Get Involved Page) ===== */
.form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.form-card-img {
  width: calc(100% + 80px);
  margin: -40px -40px 32px -40px;
  height: 220px;
  object-fit: cover;
  display: block;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.form-icon {
  font-size: 2rem;
  color: var(--primary);
  background: var(--bg-alt);
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-header h2 { margin: 0; }

.form-description {
  margin-bottom: 32px;
  color: var(--text-muted);
}

.involvement-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47, 107, 94, 0.1);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 8px 0;
}

.checkbox-group label,
.form-group.checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.download-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-alt);
  border-radius: 40px;
  color: var(--primary);
  font-weight: 500;
}

.download-label a { color: var(--primary); text-decoration: underline; }
.download-label a:hover { color: var(--primary-light); }

.involvement-form .btn {
  margin-top: 12px;
  align-self: flex-start;
}

/* ===== CONTACT ALT ===== */
.contact-alt { text-align: center; padding: 20px; }
.contact-alt i { color: var(--primary); margin-right: 8px; }

/* ===== UN HIGHLIGHT ===== */
.un-highlight {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 5px solid #009edb;
  max-width: 1000px;
  margin: 0 auto;
}

.un-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f6fc;
  color: #007bb5;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.un-highlight-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.un-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.un-highlight-text h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.un-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-top: 16px;
}

.un-letter-card {
  background: #f4f9fc;
  border: 1px solid #c8e4f0;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.un-letter-icon {
  font-size: 2.5rem;
  color: #009edb;
  margin-bottom: 16px;
}

.un-letter-card p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.un-letter-date {
  font-size: 0.85rem !important;
  color: var(--accent) !important;
  font-weight: 600;
}

@media (max-width: 768px) {
  .un-highlight { padding: 28px 20px; }
  .un-highlight-body { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== CTA BOX ===== */
.cta-box {
  text-align: center;
  padding: 48px;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 { margin-bottom: 12px; }
.cta-box p  { margin-bottom: 28px; font-size: 1.1rem; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE — 768px (tablets & mobile)
   ============================================= */
@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #018EBC;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    z-index: 99;
  }

  .nav-links.active { display: flex; }
  .mobile-toggle    { display: block; }

  /* Logo */
  .logo-desktop { display: none; }
  .logo-mobile  { display: block; }

  /* Hero */
  .hero { padding: 72px 0 60px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }

  /* About split */
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-split-image img { height: 260px; }

  /* Stats strip */
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Spotlight */
  .spotlight-card { padding: 24px; }

  /* Two column */
  .two-column      { grid-template-columns: 1fr; }
  .two-column-full { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-form  { flex-direction: column; }
  .newsletter-box   { padding: 32px 24px; }

  /* Footer */
  .footer-cta h3 { font-size: 1.5rem; }

  /* Page header */
  .page-header { padding: 72px 0 48px; }

  /* Community stats */
  .community-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pillar cards */
  .pillar-card   { padding: 24px; }
  .pillar-header { flex-direction: column; text-align: center; }

  /* Club story */
  .club-story { padding: 20px; }

  /* Forms */
  .form-card { padding: 24px; }
  .form-card-img {
    width: calc(100% + 48px);
    margin: -24px -24px 24px -24px;
    height: 180px;
  }
  .form-row         { grid-template-columns: 1fr; gap: 16px; }
  .checkbox-group   { grid-template-columns: 1fr; }
  .involvement-form .btn { width: 100%; align-self: stretch; }

  /* CTA box */
  .cta-box { padding: 32px 24px; }

  /* Vision/mission full */
  .vision-box-full,
  .mission-box-full { padding: 32px 24px; }
}

/* =============================================
   RESPONSIVE — 480px (small phones)
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  .section { padding: 56px 0; }

  .hero { padding: 56px 0 48px; }
  .hero-eyebrow { font-size: 0.75rem; }

  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .strip-stat-number { font-size: 1.9rem; }

  .community-grid { grid-template-columns: 1fr; }

  .card-grid { grid-template-columns: 1fr; }

  .footer-cta-buttons { flex-direction: column; align-items: center; }
  .btn-footer { width: 100%; max-width: 280px; }

  .newsletter-box { padding: 28px 16px; }

  .cta-box { padding: 24px 16px; }

  .pillar-icon { width: 56px; height: 56px; font-size: 2rem; }

  .page-header { padding: 56px 0 36px; }
}


/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 20px;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-date i {
  margin-right: 4px;
  color: var(--accent);
}

.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--primary);
  transition: color 0.2s ease;
}

.blog-card-body h3 a:hover {
  color: var(--primary-light);
}

.blog-card-body > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.blog-author {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-author i {
  margin-right: 4px;
  color: var(--primary);
}

/* ===== ARTICLE DETAIL PAGE ===== */
.article-container {
  max-width: 780px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 32px;
}

.article-header .blog-card-meta {
  margin-bottom: 16px;
}

.article-header h1 {
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.article-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.article-author-info {
  display: flex;
  flex-direction: column;
}

.article-author-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.article-author-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.article-body h2 {
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.article-body h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-alt);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--primary);
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.article-body img {
  width: 100%;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.article-share span {
  font-weight: 600;
  color: var(--text-dark);
}

.article-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}

.article-share a:hover {
  background: var(--primary);
  color: white;
}

/* Blog responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 180px;
  }

  .article-body {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-card-body {
    padding: 18px;
  }

  .blog-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* ===== MEMBERS PAGE ===== */

/* Featured Members Grid */
.members-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.member-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.member-featured {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
  border-left: 5px solid var(--accent);
}

.member-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.member-role {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.member-location {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.member-location i {
  color: var(--primary);
  margin-right: 4px;
}

.member-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Accomplishment Badges */
.member-accomplishments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.accomplishment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.accomplishment-badge i {
  color: var(--accent);
  font-size: 0.75rem;
}

.accomplishment-badge-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--bg-alt);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
}

.accomplishment-badge-sm i {
  color: var(--accent);
  font-size: 0.65rem;
}

/* Compact Members Grid */
.members-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.member-compact-card {
  background: white;
  border-radius: 16px;
  padding: 28px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid var(--primary);
}

.member-compact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.member-compact-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--bg-alt);
}

.member-compact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-compact-card h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.member-compact-card .member-role {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.member-compact-card .member-location {
  margin-bottom: 12px;
}

.member-compact-card .member-accomplishments {
  justify-content: center;
}

/* Accomplishments Section Grid */
.accomplishments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.accomplishment-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accomplishment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.accomplishment-icon {
  font-size: 2.2rem;
  color: var(--primary);
  background: var(--bg-alt);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.accomplishment-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.accomplishment-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Members responsive */
@media (max-width: 768px) {
  .member-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .member-avatar {
    width: 130px;
    height: 130px;
    margin: 0 auto;
  }

  .member-accomplishments {
    justify-content: center;
  }

  .members-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accomplishments-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .member-card {
    padding: 24px 18px;
  }

  .members-compact-grid {
    grid-template-columns: 1fr;
  }

  .member-compact-card {
    padding: 24px 16px;
  }
}


/* ===== PHOTO GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 74, 75, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}


/* ===== PARTNERS CAROUSEL ===== */
.partners-carousel {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
}

.partners-carousel::before,
.partners-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.partners-track {
  display: flex;
  gap: 48px;
  animation: scroll-partners 20s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.partner-logo img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.partner-logo span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.partners-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.partners-note a {
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 768px) {
  .partners-track {
    gap: 32px;
  }

  .partner-logo {
    padding: 16px 24px;
  }

  .partner-logo img {
    height: 44px;
  }
}

@media (max-width: 480px) {
  .partners-carousel::before,
  .partners-carousel::after {
    width: 40px;
  }

  .partners-track {
    gap: 24px;
  }

  .partner-logo {
    padding: 12px 18px;
  }

  .partner-logo img {
    height: 36px;
  }

  .partner-logo span {
    font-size: 0.7rem;
  }
}


/* ===== FOOTER SOCIAL MEDIA ===== */
.footer-social {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 32px;
}

.footer-social h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
  border-color: white;
}

@media (max-width: 480px) {
  .social-links a {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .social-links {
    gap: 12px;
  }
}


/* ===== EVENTS PAGE ===== */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-left: 5px solid var(--accent);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.event-past {
  border-left-color: var(--border-light);
  opacity: 0.85;
}

.event-past:hover {
  opacity: 1;
}

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 16px 8px;
  height: fit-content;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.event-month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
}

.event-year {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.event-details h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.event-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--bg-alt);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.event-tag i {
  font-size: 0.7rem;
}

.event-tag-un {
  background: #e8f6fc;
  color: #007bb5;
}

.event-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.event-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.event-meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-meta span i {
  color: var(--primary);
  margin-right: 5px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.event-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-alt);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
}

.event-status-badge i {
  color: var(--secondary);
}

/* Events responsive */
@media (max-width: 768px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .event-date-badge {
    flex-direction: row;
    gap: 8px;
    padding: 10px 16px;
    width: fit-content;
    border-radius: 40px;
  }

  .event-day {
    font-size: 1.3rem;
  }

  .event-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .event-card {
    padding: 18px;
  }

  .event-details h3 {
    font-size: 1.1rem;
  }

  .event-tags {
    gap: 6px;
  }
}


/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.testimonial-quote {
  position: relative;
  margin-bottom: 24px;
}

.testimonial-quote i {
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}

.testimonial-quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.testimonial-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-quote p {
    font-size: 1rem;
  }

  .testimonial-track {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .testimonial-track {
    min-height: 340px;
  }

  .testimonial-card {
    padding: 24px 16px;
  }
}


/* ===== HERO ANIMATIONS ===== */
.hero {
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 80%, rgba(232, 184, 75, 0.12) 0%, transparent 60%);
  animation: hero-glow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-glow {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero-eyebrow {
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  animation: fadeInDown 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-subtitle {
  animation: fadeInDown 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta {
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Floating particles effect */
.hero .container::before,
.hero .container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero .container::before {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}

.hero .container::after {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -15px); }
  50% { transform: translate(-5px, 10px); }
  75% { transform: translate(15px, 5px); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero .container::before,
  .hero .container::after {
    animation: none;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-cta {
    animation: none;
    opacity: 1;
  }
}


/* ===== BLOG CATEGORY FILTER ===== */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid var(--border-light);
  background: white;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-alt);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Blog card filter animation */
.blog-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-card.hidden {
  display: none;
}

@media (max-width: 480px) {
  .blog-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}


/* ===== PLANETARY HEALTH DEFINITION ===== */
.definition-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.definition-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.definition-left h2 {
  color: var(--primary);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}

.definition-right {
  border-left: 4px solid var(--accent);
  padding-left: 32px;
}

.definition-right .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

@media (max-width: 768px) {
  .definition-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .definition-right {
    border-left: none;
    border-top: 4px solid var(--accent);
    padding-left: 0;
    padding-top: 24px;
  }
}


/* ===== HERO TWO COLUMN ===== */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 8px;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-col + .hero-col {
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 48px;
}

.hero-col-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.hero-col-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin: 0;
}

@media (max-width: 768px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-col + .hero-col {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-left: 0;
    padding-top: 28px;
  }
}


/* ===== FOOTER PHA BADGE ===== */
.footer-pha-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 40px;
}

.footer-pha-badge img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-pha-badge p {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin: 0;
}

.footer-pha-badge a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-pha-badge a:hover {
  color: white;
}


/* ===== FOOTER BOTTOM LINK ===== */
.footer-bottom a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: white;
}


/* ===== PARTNER TEXT PLACEHOLDER ===== */
.partner-logo-text {
  justify-content: center;
}

.partner-logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.2;
}

/* Slower scroll for more partners */
.partners-track {
  animation-duration: 40s;
}


/* ===== PARTNER LOGO BLUE BACKGROUND ===== */
.partner-logo-bg-blue {
  background-color: white;
  border-color: var(--border-light);
}

.partner-logo-bg-blue img {
  background-color: #4a90b8;
  border-radius: 8px;
  padding: 8px;
}


/* ===== FOUNDER CARD ===== */
.founder-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  max-width: 500px;
}

.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.founder-info h3 {
  color: var(--primary);
  margin-bottom: 4px;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0077b5;
  background: #e8f4fb;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.founder-linkedin:hover {
  background: #0077b5;
  color: white;
}

/* ===== CORE TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.team-card {
  background: white;
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Team Avatar */
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 3px solid var(--bg-alt);
  flex-shrink: 0;
}

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

.team-avatar-placeholder {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.team-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.team-country {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.team-country::before {
  content: '📍 ';
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}

/* Team LinkedIn button */
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0077b5;
  background: #e8f4fb;
  padding: 5px 12px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
  text-decoration: none;
}

.team-linkedin:hover {
  background: #0077b5;
  color: white;
}

/* ===== COMMITTEES ===== */
.committee-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.committee-btn {
  padding: 10px 22px;
  border-radius: 40px;
  border: 1px solid var(--border-light);
  background: white;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.committee-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.committee-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.committee-panel {
  display: none;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.committee-panel.active {
  display: block;
}

.committee-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.committee-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 12px;
  background: var(--bg-alt);
  border-radius: 8px;
}

.committee-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.committee-senior {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: rgba(232,184,75,0.15);
  padding: 2px 8px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
  }

  .committee-buttons {
    gap: 8px;
  }

  .committee-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .committee-list {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-avatar {
    width: 68px;
    height: 68px;
  }
}

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