/* ============================================
   EMPATHY CIRCLE TRAINING — SHARED STYLESHEET
   empathycircletraining.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- TOKENS ---- */
:root {
  --primary:       #1B4F72;
  --primary-dark:  #0f3349;
  --primary-light: #d6e8f5;
  --teal:          #1a7a6e;
  --teal-light:    #d4f0ec;
  --gold:          #c8820a;
  --gold-light:    #fef6e4;
  --text:          #1a2e3b;
  --text-mid:      #3d5a6e;
  --text-light:    #6a8599;
  --bg:            #f8faf9;
  --bg-card:       #ffffff;
  --border:        #dce8f0;
  --border-soft:   #eef3f6;
  --step-1:        #1a7a6e;
  --step-2:        #1B4F72;
  --step-3:        #6b3fa0;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow-sm:     0 2px 8px rgba(27,79,114,.08);
  --shadow-md:     0 6px 24px rgba(27,79,114,.12);
  --shadow-lg:     0 12px 40px rgba(27,79,114,.16);
  --max-w:         1100px;
  --transition:    all .22s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ---- LAYOUT UTILITIES ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 28px 0; }
.section--alt { background: #eef5f8; }
.section--teal { background: var(--teal-light); }
.section--dark { background: var(--primary-dark); color: white; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: white; }

.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .6rem;
}
.section-intro { font-size: 1.1rem; color: var(--text-mid); max-width: 640px; margin: .2rem auto 0; }

/* ---- NAVIGATION ---- */
.site-nav {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.nav-logo span { display: block; font-size: .75rem; font-weight: 400; color: rgba(255,255,255,.65); font-family: 'DM Sans', sans-serif; letter-spacing: .04em; }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: white; background: rgba(255,255,255,.12); }
.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #a86c08 !important; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1B4F72 60%, #1a5a6e 100%);
  color: white;
  padding: 28px 0 20px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { color: white; margin-bottom: 1.1rem; }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 320px;
}
.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: #135e54; color: white; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,110,.3); }
.btn-secondary { background: white; color: var(--primary); border: 2px solid white; }
.btn-secondary:hover { background: var(--primary-light); color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #a86c08; color: white; transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: .875rem; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }

/* ---- BANNER ---- */
.event-banner {
  background: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.banner-badge {
  background: var(--gold);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}
.banner-text h4 { color: var(--gold); margin-bottom: 2px; }
.banner-text p { font-size: .9rem; color: var(--text-mid); margin: 0; }

/* ---- 3-STEP ROADMAP ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 14px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  position: relative;
  z-index: 1;
  transition: var(--transition);
  text-align: center;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 18px;
}
.step-card:nth-child(1) .step-number { background: var(--step-1); }
.step-card:nth-child(2) .step-number { background: var(--step-2); }
.step-card:nth-child(3) .step-number { background: var(--step-3); }
.step-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step-card p { font-size: .92rem; color: var(--text-mid); margin-bottom: 18px; }
.step-time {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: .82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.step-card:nth-child(1) .step-time { background: var(--teal-light); color: var(--teal); }
.step-card:nth-child(2) .step-time { background: var(--primary-light); color: var(--primary); }
.step-card:nth-child(3) .step-time { background: #ece6f5; color: var(--step-3); }

/* ---- SCHEDULE TABLE ---- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
}
.schedule-table thead { background: var(--primary); }
.schedule-table thead th {
  color: white;
  font-weight: 600;
  font-size: .88rem;
  text-align: left;
  padding: 14px 20px;
  letter-spacing: .04em;
}
.schedule-table tbody tr { border-bottom: 1px solid var(--border-soft); }
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--bg); }
.schedule-table td { padding: 14px 20px; font-size: .93rem; vertical-align: middle; }
.schedule-table .cohort-label { font-weight: 600; color: var(--text); }
.schedule-table .apply-btn { white-space: nowrap; }

/* ---- TESTIMONIAL CARDS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--teal);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Lora', serif;
  font-size: 4rem;
  color: var(--teal-light);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}
.testimonial-card p { font-size: .95rem; font-style: italic; color: var(--text-mid); line-height: 1.65; }
.testimonial-author { margin-top: 16px; font-size: .85rem; font-weight: 600; color: var(--text-light); font-style: normal; }

/* ---- INFO CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}
.info-card .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.info-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.info-card p { font-size: .97rem; color: var(--text-mid); }

/* ---- ZOOM CARD ---- */
.zoom-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 14px;
}
.zoom-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zoom-card.featured { border-color: var(--teal); }
.zoom-day {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.zoom-time { font-size: .9rem; color: var(--text-mid); }
.zoom-card .btn { align-self: flex-start; }

/* ---- SUMMIT DATES ---- */
.summit-dates {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.summit-date {
  background: var(--bg-card);
  border: 2px solid var(--primary-light);
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
}

/* ---- STAT PILLS ---- */
.stat-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.stat-pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 12px 20px;
  color: white;
  text-align: center;
}
.stat-pill strong { display: block; font-size: 1.5rem; font-family: 'Lora', serif; }
.stat-pill span { font-size: .8rem; opacity: .8; }

/* ---- TEAM CARDS ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.team-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  text-align: center;
}
.team-avatar {
  width: 72px; height: 72px;
  background: var(--primary-light);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
}
.team-card h3 { margin-bottom: 4px; }
.team-card .team-role { font-size: .85rem; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: .9rem; color: var(--text-mid); text-align: left; }

/* ---- RESOURCE LIST ---- */
.resource-section { margin-top: 20px; }
.resource-section h3 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}
.resource-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.resource-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 14px 18px;
  transition: var(--transition);
}
.resource-list li:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.resource-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.resource-list a { font-weight: 500; font-size: .88rem; color: var(--text); flex: 0 0 30%; }
.resource-list a:hover { color: var(--teal); }
.resource-list .res-desc { font-size: .82rem; color: var(--text-light); flex: 1; }

/* ---- NETWORK LINKS ---- */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 14px;
}
.network-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
  transition: var(--transition);
}
.network-link:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }

/* ---- ACCORDION (SESSION DETAILS) ---- */
.accordion { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}
.accordion-trigger:hover { background: var(--bg); }
.accordion-trigger .acc-num {
  background: var(--primary-light);
  color: var(--primary);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 12px;
}
.accordion-trigger .acc-arrow { transition: transform .2s ease; font-size: .75rem; color: var(--text-light); }
.accordion-item.open .acc-arrow { transform: rotate(180deg); }
.accordion-body { padding: 0 22px 20px; display: none; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body ul { padding-left: 18px; color: var(--text-mid); font-size: .93rem; }
.accordion-body ul li { margin-bottom: 4px; }

/* ---- PREREQ BOX ---- */
.prereq-box {
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.prereq-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: -2px; }
.prereq-box h4 { color: var(--teal); margin-bottom: 6px; }
.prereq-box p { font-size: .93rem; color: var(--text-mid); margin: 0; }

/* ---- MISSION/QUOTE BLOCK ---- */
.mission-block {
  background: var(--primary-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  position: relative;
  overflow: hidden;
}
.mission-block::before {
  content: '"';
  font-family: 'Lora', serif;
  font-size: 10rem;
  color: rgba(255,255,255,.06);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}
.mission-block blockquote {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,.9);
  border: none;
  position: relative;
  z-index: 1;
}
.mission-block cite {
  display: block;
  margin-top: 12px;
  font-size: .85rem;
  font-style: normal;
  color: rgba(255,255,255,.55);
}

/* ---- VIDEO PLACEHOLDER ---- */
.video-wrap {
  /*background: #111;*/
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*background: linear-gradient(135deg, #0f1e2b, #1B4F72);*/
  color: white;
  gap: 10px;
}
.video-placeholder .play-icon { font-size: 3rem; opacity: .5; }
.video-placeholder p { font-size: .9rem; opacity: .6; text-align: center; padding: 0 20px; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  padding: 30px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
}
.footer-brand h3 { color: white; font-size: 1.15rem; margin-bottom: 8px; }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 16px; }
.footer-col h4 { color: white; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}
.gift-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
}

/* ---- TWO-COL UTILITY ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.two-col--center { align-items: end; }
.two-col--60 { gap: 60px; }

/* ---- HAMBURGER NAV ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.82);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 8px 0 12px;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  font-weight: 500;
  padding: 10px 24px;
  display: block;
  transition: var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: white; background: rgba(255,255,255,.08); }
.nav-mobile .nav-cta {
  margin: 8px 24px 0;
  padding: 10px 16px !important;
  background: var(--gold) !important;
  border-radius: 6px;
  text-align: center;
  font-weight: 600 !important;
  color: white !important;
}

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  .hero-two-col { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trainer-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .res-two-col { grid-template-columns: 1fr !important; gap: 28px; }
  .circle-explainer { grid-template-columns: 1fr; gap: 24px; }
  .network-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 28px 0 20px; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .event-banner { flex-direction: column; align-items: flex-start; }
  .cohort-table-wrap { font-size: .8rem; }
  .cohort-table th, .cohort-table td { padding: 10px 10px; }
  .apply-box { padding: 36px 20px; }
  .apply-meta { padding: 14px 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 13px 22px; font-size: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .prereq-box { flex-direction: column; gap: 10px; }
  .footer-grid { gap: 28px; }
  .schedule-table { font-size: .85rem; }
  .schedule-table td, .schedule-table th { padding: 10px 14px; }
  h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.7rem); }
}

/* ---- PAGE-SPECIFIC: EXPERIENCE ---- */
.circle-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-top: 16px;
}
.circle-explainer .roles { margin-top: 12px; display: flex; flex-direction: column; gap: 12px; }
.role-card {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 14px 18px;
  border: 1px solid var(--border-soft);
  display: flex; gap: 12px; align-items: flex-start;
}
.role-emoji { font-size: 1.4rem; flex-shrink: 0; }
.role-card h4 { font-size: .9rem; margin-bottom: 2px; }
.role-card p { font-size: .83rem; color: var(--text-mid); margin: 0; }

/* ---- PAGE-SPECIFIC: RESOURCES ---- */
.res-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 18px;
}

}
