/* ══════════════════════════════════════════════
   ÉVÉNEMENTS — REDESIGN COMPLET
   ══════════════════════════════════════════════ */

/* ── HERO ── */
.ev-hero {
  position: relative;
  padding: calc(var(--nav-height, 80px) + 3.5rem) 0 0;
  background: var(--navy, #1B2A4A);
  color: #fff;
  overflow: hidden;
}
.ev-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(45, 91, 215, .1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(37, 99, 235, .08) 0%, transparent 50%);
  pointer-events: none;
}
.ev-hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: end;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--space-lg, 1.5rem);
}
.ev-hero__content {
  padding-bottom: 3.5rem;
}
.ev-hero .breadcrumb { margin-bottom: 1.5rem; }
.ev-hero .breadcrumb a,
.ev-hero .breadcrumb .sep,
.ev-hero .breadcrumb span { color: rgba(255,255,255,.45); font-size: .78rem; }
.ev-hero .breadcrumb a:hover { color: rgba(255,255,255,.8); }
.ev-hero .breadcrumb [aria-current] { color: rgba(255,255,255,.7); }

.ev-hero .ev-hero__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.ev-hero__label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--color-accent);
}
.ev-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.025em;
}
.ev-hero__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 420px;
  margin: 0 0 1.5rem;
  line-height: 1.65;
  font-family: var(--font-body);
}

/* Counter + CTA row */
.ev-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ev-hero__counter {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .01em;
}
.ev-hero__counter strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 13px;
  background: var(--color-accent);
  color: var(--navy, #1B2A4A);
  font-size: .75rem;
  font-weight: 800;
}
.ev-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  padding: .5rem 1rem .5rem 1.1rem;
  border: 1.5px solid rgba(45, 91, 215, .3);
  border-radius: 8px;
  transition: all .25s ease;
}
.ev-hero__cta:hover {
  background: rgba(45, 91, 215, .1);
  border-color: rgba(45, 91, 215, .6);
  gap: .6rem;
}
.ev-hero__cta svg {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}
.ev-hero__cta:hover svg {
  transform: translateY(2px);
}

/* ── Decorative calendar visual ── */
.ev-hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}
.ev-hero__cal {
  position: relative;
  width: 220px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  padding: 1.5rem 1.25rem 2rem;
  backdrop-filter: blur(8px);
  text-align: center;
}
.ev-hero__cal-header {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ev-hero__cal-day {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: .25rem;
}
.ev-hero__cal-month {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.ev-hero__cal-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}
.ev-hero__cal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: .5;
  animation: ev-dot-pulse 2s ease-in-out infinite;
}
.ev-hero__cal-dot:nth-child(2) { animation-delay: .3s; opacity: .7; }
.ev-hero__cal-dot:nth-child(3) { animation-delay: .6s; }
@keyframes ev-dot-pulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
/* Glow behind calendar */
.ev-hero__cal::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(45, 91, 215, .12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── SECTION WRAPPER ── */
.ev-section {
  padding: var(--space-4xl, 5.5rem) 0;
}
.ev-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-lg, 1.5rem);
}

/* ── SECTION HEADER ── */
.ev-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ev-section-header__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ice, #eff6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ev-section-header__icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue, #2563eb);
}
.ev-section-header__text h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink, #1e293b);
  margin: 0;
  line-height: 1.2;
}
.ev-section-header__text p {
  font-size: .85rem;
  color: var(--muted, #64748b);
  margin: .25rem 0 0;
}

/* ── TIMELINE ── */
.ev-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ev-timeline::before {
  content: '';
  position: absolute;
  left: 49px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pale, #dbeafe), var(--border, #dbeafe) 70%, transparent);
}

/* ── TIMELINE EVENT CARD ── */
.ev-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 1.5rem;
  padding-bottom: 2rem;
}
.ev-item:last-child { padding-bottom: 0; }
/* When past events are collapsed, the 3rd item is visually last */
.events-past-list.js-collapse:not(.expanded) .ev-item:nth-child(3) { padding-bottom: 0; }

/* "Next up" highlight for the first event */
.ev-item--next .ev-card {
  border-color: var(--cyan, #60a5fa);
  box-shadow: 0 4px 20px rgba(37, 99, 235, .1);
}
.ev-item--next .ev-date-pip {
  width: 16px;
  height: 16px;
  border: none;
  background: var(--primary-dark, #1e3a8a);
  box-shadow: 0 0 0 4px var(--pale, #dbeafe), 0 0 0 8px rgba(37, 99, 235, .08);
}

/* Date column */
.ev-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: .5rem;
  position: relative;
}
.ev-date-pip {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue, #2563eb);
  border: 3px solid var(--bg-white, #fff);
  box-shadow: 0 0 0 2px var(--pale, #dbeafe);
  z-index: 1;
  margin-bottom: .5rem;
}
.ev-date-pip--muted {
  background: var(--steel, #94a3b8);
  box-shadow: 0 0 0 2px var(--border, #dbeafe);
}
.ev-date-label {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted, #64748b);
  text-align: center;
  line-height: 1.35;
}
.ev-date-label strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink, #1e293b);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .1rem;
}

/* Card image */
.ev-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Card itself */
.ev-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #dbeafe);
  border-left: 4px solid var(--color-accent-soft);
  border-radius: 8px;
  padding: 24px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: all .2s ease;
  position: relative;
}
.ev-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
/* Card border-left color per type */
.ev-tag--salon ~ .ev-card,
.ev-item:has(.ev-tag--salon) .ev-card { border-left-color: #3B82F6; }
.ev-item:has(.ev-tag--cycle) .ev-card { border-left-color: #1B2A4A; }
.ev-item:has(.ev-tag--culture) .ev-card { border-left-color: var(--color-accent); }
/* "Détails à venir" cards — attenuated style */
.ev-item--pending .ev-card {
  opacity: .7;
  box-shadow: none;
  border-left: 4px dashed #D1D5DB;
}
.ev-item--pending .ev-card:hover {
  opacity: .85;
  box-shadow: none;
  transform: none;
}
/* No horizontal connector — proximity + vertical alignment
   create sufficient visual link between pip and card */

/* ── TAG (color-coded badges) ── */
.ev-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: 'Bricolage Grotesque', var(--font-display), sans-serif;
  margin-bottom: .65rem;
  /* Default: conférence = terra */
  color: var(--color-accent-soft);
  background: rgba(45, 91, 215, .12);
  border-left: 3px solid var(--color-accent-soft);
}
.ev-tag--cycle {
  color: #1B2A4A;
  background: rgba(27, 42, 74, .08);
  border-left: 3px solid #1B2A4A;
}
.ev-tag--salon {
  color: #3B82F6;
  background: rgba(59, 130, 246, .12);
  border-left: 3px solid #3B82F6;
}
.ev-tag--culture {
  color: var(--color-accent);
  background: rgba(45, 91, 215, .12);
  border-left: 3px solid var(--color-accent);
}
.ev-tag--debat {
  color: var(--color-accent);
  background: rgba(45, 91, 215, .12);
  border-left: 3px solid var(--color-accent);
}
.ev-tag--anniversaire,
.ev-tag--campagne {
  color: #6B7280;
  background: rgba(107, 114, 128, .08);
  border-left: 3px solid #D1D5DB;
}

/* ── TITLE ── */
.ev-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink, #1e293b);
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.ev-title--lg {
  font-size: 1.35rem;
}

/* ── SUBTITLE (cycle name) ── */
.ev-cycle-name {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted, #64748b);
  margin-bottom: .35rem;
}

/* ── DESCRIPTION ── */
.ev-desc {
  font-size: .88rem;
  color: var(--body, #475569);
  line-height: 1.6;
  margin-bottom: .85rem;
}

/* ── SPEAKERS ── */
.ev-speakers {
  margin-bottom: .85rem;
  padding: .85rem 1rem;
  background: var(--ice, #eff6ff);
  border-radius: 10px;
  border-left: 3px solid var(--pale, #dbeafe);
}
.ev-speakers-label {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted, #64748b);
  margin-bottom: .5rem;
}
.ev-speaker {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  font-size: .84rem;
  color: var(--body, #475569);
  line-height: 1.55;
  padding: .15rem 0;
}
.ev-speaker::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan, #60a5fa);
  flex-shrink: 0;
  margin-top: .45rem;
}
.ev-speaker strong {
  color: var(--ink, #1e293b);
  font-weight: 600;
}
.ev-speaker em {
  font-style: normal;
  color: var(--muted, #64748b);
  font-size: .8rem;
}

/* ── META ROW (lieu, partenariat) ── */
.ev-meta {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: .25rem;
}
.ev-meta-item {
  display: inline-flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted, #64748b);
  line-height: 1.5;
}
.ev-meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .1rem;
  opacity: .5;
}

/* ── ACTION ROW ── */
.ev-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* Primary button */
.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem 1.4rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}
.ev-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ev-btn--primary {
  background: var(--primary-dark, #1e3a8a);
  color: #fff;
  border-color: var(--primary-dark, #1e3a8a);
  box-shadow: 0 2px 8px rgba(30, 58, 138, .2);
}
.ev-btn--primary:hover {
  background: #152e6e;
  border-color: #152e6e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 58, 138, .25);
}

.ev-btn--secondary {
  background: var(--ice, #eff6ff);
  color: var(--primary-dark, #1e3a8a);
  border-color: var(--pale, #dbeafe);
}
.ev-btn--secondary:hover {
  background: var(--pale, #dbeafe);
  border-color: var(--cyan, #60a5fa);
  transform: translateY(-1px);
}

.ev-btn--ghost {
  background: #F3F4F6;
  color: #9CA3AF;
  border-color: transparent;
  cursor: default;
  font-weight: 500;
  font-size: .75rem;
}

.ev-btn--accent {
  background: var(--color-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(45, 91, 215, .25);
}
.ev-btn--accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 91, 215, .35);
  color: #fff;
}

/* Calendar button */
.ev-cal {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-left: auto;
  padding: .5rem .85rem;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 600;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted, #64748b);
  background: transparent;
  border: 1px solid var(--border, #dbeafe);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.ev-cal svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .5; }
.ev-cal:hover {
  background: var(--ice, #eff6ff);
  border-color: var(--cyan, #60a5fa);
  color: var(--primary-dark, #1e3a8a);
}
.ev-cal:hover svg { opacity: 1; }

/* ── HINT / PROMO BOX ── */
.ev-promo {
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fde68a;
  border-radius: 10px;
  font-size: .82rem;
  color: #92400e;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.ev-promo svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: .05rem;
}

/* ── APPROXIMATE DATE (no precise date) ── */
.ev-date-label--approx {
  font-family: 'Bricolage Grotesque', var(--font-display), sans-serif;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #6B7280;
}
.ev-date-label--approx svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0 auto .35rem;
  color: #1B2A4A;
  opacity: .5;
}

/* ── PARTNERSHIP BADGE ── */
.ev-partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  font-size: .8rem;
  color: #6B7280;
}
.ev-partnership-badge strong {
  font-weight: 600;
  color: #1B2A4A;
}

/* ── SPEAKER HOVER ── */
.ev-speaker strong {
  transition: color .2s ease;
}
.ev-speaker:hover strong {
  color: #3B82F6;
}

/* ── PAST EVENTS SECTION ── */
.ev-section--past {
  background: var(--bg-alt, #f0f5ff);
}
.ev-section--past .ev-card {
  opacity: .7;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ev-section--past .ev-card:hover {
  opacity: 1;
}
.ev-section--past .ev-date-pip {
  background: var(--steel, #94a3b8);
  box-shadow: 0 0 0 2px var(--border, #dbeafe);
}
.ev-section--past .ev-timeline::before {
  background: linear-gradient(to bottom, var(--border, #dbeafe), transparent);
}

/* ── CTA SECTION ── */
.ev-cta-section {
  padding: var(--space-4xl, 5.5rem) 0;
  text-align: center;
}
.ev-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px var(--space-lg, 1.5rem);
  background: #1B2A4A;
  color: #fff;
  border-radius: 12px;
}
.ev-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .65rem;
}
.ev-cta-section p {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin: 0 0 1.75rem;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.ev-cta-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ev-cta-actions .btn-primary,
.ev-cta-actions .ev-cta-btn-primary {
  background: #fff;
  color: #1B2A4A;
  border: none;
  padding: .7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  transition: all .2s ease;
}
.ev-cta-actions .btn-primary:hover,
.ev-cta-actions .ev-cta-btn-primary:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
}
.ev-cta-actions .btn-outline,
.ev-cta-actions .ev-cta-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
  padding: .7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: none;
  transition: all .2s ease;
}
.ev-cta-actions .btn-outline:hover,
.ev-cta-actions .ev-cta-btn-secondary:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* ── PAST EVENTS — compact by default, expandable ── */
/* JS adds .js-collapse on load; without JS all items stay visible */
.ev-section--past .events-past-list.js-collapse .ev-item:nth-child(n+4) {
  display: none;
}
.ev-section--past .events-past-list.js-collapse.expanded .ev-item:nth-child(n+4) {
  display: grid;
}
/* Hide show-more button when JS hasn't initialized collapse */
.events-past-list:not(.js-collapse) + .ev-show-more-wrap {
  display: none;
}
.ev-show-more-wrap {
  text-align: center;
  margin-top: 1.5rem;
}
.ev-show-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--muted, #64748b);
  background: var(--white, #fff);
  border: 1px solid var(--border, #dbeafe);
  cursor: pointer;
  transition: all .2s ease;
}
.ev-show-more:hover {
  color: var(--primary-dark, #1e3a8a);
  border-color: var(--cyan, #60a5fa);
  background: var(--ice, #eff6ff);
}
.ev-show-more svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
.events-past-list.js-collapse.expanded + .ev-show-more-wrap .ev-show-more svg {
  transform: rotate(180deg);
}

/* ── SCROLL OFFSET FOR ANCHOR NAVIGATION ── */
.ev-item[id] {
  scroll-margin-top: calc(var(--nav-height, 80px) + 2rem);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .ev-hero { padding: calc(var(--nav-height, 80px) + 2.5rem) 0 0; }
  .ev-hero .container { grid-template-columns: 1fr; gap: 0; }
  .ev-hero__content { padding-bottom: 2rem; }
  .ev-hero__visual { justify-content: flex-start; }
  .ev-hero__cal { width: 160px; padding: 1rem 1rem 1.5rem; border-radius: 14px 14px 0 0; }
  .ev-hero__cal-day { font-size: 3rem; }
  .ev-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .ev-hero__cta { font-size: .74rem; }
  .ev-section { padding: var(--space-3xl, 4rem) 0; }

  /* Mobile: simpler layout, no timeline */
  .ev-timeline::before { display: none; }
  .ev-item { grid-template-columns: 1fr; gap: 0; }
  .ev-date-col {
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    padding: 0 0 .65rem;
  }
  .ev-date-pip { display: none; }
  .ev-date-label {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    font-size: .7rem;
  }
  .ev-date-label strong {
    display: inline;
    font-size: 1rem;
    margin-bottom: 0;
  }
  .ev-card { padding: 1.25rem; }

  .ev-item--next .ev-date-pip { display: none; }

  .ev-actions { flex-direction: column; align-items: stretch; }
  .ev-btn { width: 100%; justify-content: center; padding: .7rem 1rem; }
  .ev-cal { margin-left: 0; width: 100%; justify-content: center; }

  .ev-speakers { padding: .7rem .85rem; }
  .ev-promo { flex-direction: column; gap: .4rem; }

  .ev-section-header__icon { width: 36px; height: 36px; border-radius: 8px; }
  .ev-section-header__icon svg { width: 18px; height: 18px; }
  .ev-section-header__text h2 { font-size: 1.3rem; }
  .ev-date-label strong { font-size: 1.2rem; }
  .ev-cta-inner { padding: 40px 24px; }
  .ev-cta-actions { flex-direction: column; align-items: center; }
  .ev-cta-actions a { width: 100%; text-align: center; }
}

@media (max-width: 400px) {
  .ev-hero__label { font-size: .6rem; }
  .ev-hero__visual { display: none; }
}
