:root{
  --blue:#005596;      /* UWindsor Blue */
  --gold:#FFCE00;      /* UWindsor Gold */
  --grey:#58595B;      /* UWindsor Grey */
  --navy:#0E1B2A;      /* Lancer Navy */
  --bg:#f4f7fb;
  --card-shadow:0 20px 50px rgba(15,23,42,.12);
  --text:#0b1220;
  --muted:#667085;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:"Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto;
  background:#ffffff;
  color:var(--text);
  text-rendering: optimizeLegibility;
  min-height:100vh;
}

/* Homepage soft glow (no gradients) */
body.home-page{
  position:relative;
}
body.home-page::before,
body.home-page::after{
  content:'';
  position:fixed;
  pointer-events:none;
  z-index:-1;
  border-radius:999px;
  filter:blur(90px);
  opacity:.9;
}
body.home-page::before{
  width:560px;
  height:560px;
  left:-220px;
  top:120px;
  background:rgba(0,85,150,.14);
}
body.home-page::after{
  width:420px;
  height:420px;
  right:-180px;
  top:40px;
  background:rgba(0,85,150,.10);
}

.shell{
  max-width:1180px;
  margin:0 auto;
  padding:18px 34px 90px;

}

/* Homepage spacing */
body.home-page .shell{
  padding-bottom:36px;
}
body.home-page header{
  margin-bottom:22px;
}
body.home-page .hero{
  gap:16px;
}
body.home-page .hero-visual{
  min-height:310px;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:26px;
  position:sticky;
  top:0;
  padding:0;
  backdrop-filter:none;
  border-bottom:none;
  /* 
  z-index:2; */
}
.brand{
  display:flex;
  align-items:center;
  gap:0;
  font-weight:800;
  letter-spacing:-.02em;
  color:#0f1d35;
  text-decoration:none;
}
.brand:visited{color:#0f1d35;}
.brand:hover{opacity:.9;}
.logo{
  width:38px;height:38px;border-radius:12px;
  background:var(--blue);
  border:2px solid var(--gold);
  display:grid;place-items:center;color:#fff;font-size:14px;
  box-shadow:0 14px 32px rgba(0,0,0,.16);
}
.uw-logo{height:34px;width:auto;display:block;}
nav a{
  margin-left:22px;
  text-decoration:none;
  color:#0f1d35;
  font-weight:600;
  position: relative;
  font-size:15px;
  padding:0;
}
nav a::after {
  content:'';
  position:absolute;
  width:100%;
  height:3px;
  border-radius:999px;
  background-color: var(--gold);
  bottom:-8px;
  left:0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
nav a:hover::after {transform: scaleX(1);transform-origin: bottom left;}

header nav a.active{
  background:none;
}
header nav a.active::after{
  transform: scaleX(1);
  transform-origin: bottom left;
}

.hero{
  display:flex;
  flex-direction:column;
  gap:20px;
  position:relative;
  overflow:visible;
}
.hero-grid{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  width:100%;
  position:relative;
  z-index:2;
  padding-top: 100px;

}
.hero-copy{
  max-width:760px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  opacity:0;
  animation:riseFade .9s ease .05s forwards;
}
.hero-copy h1{
  font-size:54px;
  line-height:1.05;
  margin:6px 0 8px;
  font-weight:800;
  letter-spacing:-.03em;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(0,85,150,.08);
  border:1px solid rgba(0,85,150,.2);
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.sub{
  max-width:620px;
  margin:0 0 14px;
  color:var(--muted);
  font-size:18px;
}
.actions{display:flex;gap:12px;margin-bottom:6px;justify-content:center;}
.hero-copy > *{
  opacity:0;
  animation:riseFade .7s ease forwards;
}
.hero-copy .eyebrow{animation-delay:.05s;}
.hero-copy h1{animation-delay:.12s;}
.hero-copy .sub{animation-delay:.18s;}
.hero-copy .actions{animation-delay:.24s;}
.hero-copy .meta{animation-delay:.3s;}
.btn{
  padding:14px 22px;
  border-radius:999px;
  border:none;
  font-weight:700;
  cursor:pointer;
  font-size:15px;
  transition:transform .18s ease, box-shadow .18s ease, background .2s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn:hover{transform:translateY(-2px);}
.primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 10px 30px rgba(0,85,150,.35);
}
.secondary{
  background:#fff;
  color:var(--text);
  border:1px solid rgba(0,85,150,.18);
}
.meta{display:flex;flex-wrap:wrap;gap:10px;margin-top:10px;}
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  background:#f2f4ff;
  color:#2f2f4f;
  font-size:13px;
  font-weight:700;
}
.soft{background:#e7f9f1;color:#075e45;}
.soft-eye{
  background:rgba(0,85,150,.06);
  border-color:rgba(0,85,150,.2);
  color:var(--blue);
}

.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:340px;
  width:100%;
  padding:8px 0 0;
  opacity:0;
  animation:fadeIn .9s ease .2s forwards;
  z-index:2;
}

.card-band{
  position:relative;
  width:100%;
  display:flex;
  justify-content:center;
  padding:8px 0 0;
  overflow:visible;
}
.card-band::before {
    content: '';
    position: absolute;
    /* left: -12vw; */
    /* right: -12vw; */
    top: 130px;
    height: 200px;
    background: var(--navy);
    /* border-radius: 52px 52px 0 0; */
    z-index: 0;
    width: 100vw;

}
.card-band::after{
  content:'';

  top:116px;
  height:14px;
  background:var(--gold);
  z-index:1;


      content: '';
    position: absolute;
  
  
    width: 100vw;

}

.floating-label{
  position:absolute;
  top:12px;
  left:18px;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid #dce0e8;
  font-weight:700;
  box-shadow:var(--card-shadow);
  z-index:6;
}
.floating-label.right{
  top:12px;
  right:18px;
  left:auto;
}
.floating-label.pop-tag{
  --sx:-240px;
  --sy:-160px;
  --sr:-8deg;
  pointer-events:none;
  opacity:0;
  transform:translate(var(--sx), var(--sy)) scale(.75) rotate(var(--sr));
  transition:transform .45s cubic-bezier(.2,.9,.2,1), opacity .25s ease;
}
.floating-label.pop-tag.right{
  --sx:240px;
  --sy:160px;
  --sr:8deg;
}
.hero-visual.show-tags .floating-label.pop-tag{
  opacity:1;
  transform:translate(0,0) scale(1) rotate(0deg);
}

.event-strip{
  display:flex;
  justify-content:center;
  gap:0;
  width:100%;
}
.event-card{
  width:190px;
  height:240px;
  border-radius:16px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--card-shadow);
  transition:transform .25s ease, box-shadow .25s ease;
  position:relative;
  margin-left:-42px; /* ~20% overlap */
  overflow:hidden;
  isolation:isolate;
  z-index:var(--z, 1);
  --card-scale: 1;
  --card-lift: 0px;
  transform:rotate(var(--card-rotation)) translateY(var(--card-lift)) scale(var(--card-scale));
  animation:
    fadeIn .75s ease forwards,
    float 9s ease-in-out infinite;
  animation-delay:calc(var(--float-delay,0s) + .25s), var(--float-delay,0s);
  opacity:0;
}
.event-card:first-child{margin-left:0;}
.event-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  opacity:.14;
  transition:opacity .3s ease;
}
.event-strip.is-active .event-card{--card-scale:.98;}
.event-card.is-near{--card-scale:1.06;--card-lift:-10px;z-index:50;}
.event-card.is-hovered{
  --card-scale:1.16;
  --card-lift:-24px;
  box-shadow:0 30px 60px rgba(0,0,0,.16);
  z-index:99;
  animation-play-state:paused;
}
.event-card.is-hovered::before{opacity:.65;}
.event-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:16px;
  color:#fff;
  gap:10px;
  opacity:1;
  transform:translateY(0);
  transition:transform .22s ease;
}
.event-card.is-hovered .event-overlay{transform:translateY(-2px);}
.event-meta p{
  margin:0;
  font-weight:800;
  font-size:15px;
}
.event-meta span{
  font-size:13px;
  color:rgba(255,255,255,.82);
}
.event-meta{
  opacity:.95;
  transform:translateY(0);
}
.bubble{
  background:rgba(255,255,255,.9);
  color:#0b1220;
  font-weight:800;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.section{
  margin-top:70px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.section-head h2{
  margin:6px 0 8px;
  font-size:34px;
  letter-spacing:-.02em;
}
.section-sub{
  color:var(--muted);
  max-width:720px;
  margin:0;
}
.soft-eye{
  background:rgba(0,85,150,.06);
  border-color:rgba(0,85,150,.2);
  color:var(--blue);
}
.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:14px;
}
.stat-card{
  padding:18px 20px;
  background:#fff;
  border-radius:16px;
  border:1px solid #e6e8ef;
  box-shadow:0 12px 24px rgba(0,0,0,.05);
}
.stat-card h3{margin:0;font-size:28px;}
.stat-card p{margin:6px 0 0;color:var(--muted);}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
}
.feature-card{
  padding:18px 20px;
  background:#f4f7fb;
  border-radius:16px;
  border:1px solid rgba(0,85,150,.15);
  box-shadow:0 14px 30px rgba(0,85,150,.06);
}
.feature-card h3{margin:0 0 8px;}
.feature-card p{margin:0;color:var(--muted);}

.code{
  margin-top:60px;
}
.code-card{
  background:#0b1220;
  color:#e5e9f5;
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}
.code-head{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:12px;
}
.code-dot{
  width:10px;height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.3);
}
pre{
  margin:0;
  background:rgba(255,255,255,.06);
  padding:16px;
  border-radius:12px;
  overflow:auto;
  font-size:14px;
  line-height:1.45;
}

.list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:14px;
}
.list-item{
  padding:16px 18px;
  background:#fff;
  border-radius:14px;
  border:1px solid #e6e8ef;
  box-shadow:0 10px 26px rgba(0,0,0,.05);
}
.list-item h4{margin:0 0 6px;}
.list-item p{margin:0;color:var(--muted);}

.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
}
.news-card{
  padding:18px 20px;
  border-radius:16px;
  background:#101828;
  color:#f8fafc;
  box-shadow:0 16px 36px rgba(0,0,0,.22);
}
.news-tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,206,0,.12);
  font-weight:700;
  font-size:13px;
}
.news-title{margin:12px 0 12px;font-weight:700;}
.news-link{color:#FFCE00;text-decoration:none;font-weight:700;}

.cta-card{
  padding:26px 24px;
  background:var(--navy);
  color:#f8fafc;
  border-radius:18px;
  box-shadow:0 20px 48px rgba(0,0,0,.25);
}
.cta-card h2{margin:6px 0 10px;}
.cta-card .section-sub{color:#cbd5e1;}
.actions.center{justify-content:center;flex-wrap:wrap;}

.footer{
  position:relative;
  min-height:auto;
  background:var(--navy);
  border-top:none;
  overflow:hidden;
}
.footer::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:14px;
  background:var(--gold);
}
.footer-inner{
  max-width:1180px;
  margin:0 auto;
  padding:24px 24px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
}
.footer .brand{
  color:#fff;
  text-decoration:none;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 16px;
}
.footer a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:600;
}
.footer a:hover{text-decoration:underline;}
.footer-meta{color:rgba(255,255,255,.78);}
.footer-meta{
  font-size:13px;
  letter-spacing:.01em;
}

.events-page{
  background:#f4f7fb;
  color:#0e1b2a;
  min-height:100vh;
  font-family:"Space Grotesk", Inter, system-ui, -apple-system, "Segoe UI", Roboto;
}
.events-hero{
  position:relative;
  padding:28px 34px 30px;
  overflow:hidden;
}
.events-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}
.events-nav nav a{
  color:#0e1b2a;
  opacity:.8;
}
.events-nav nav a.active{opacity:1;}
.events-hero-content{
  max-width:1160px;
  margin:0 auto;
  position:relative;
  z-index:1;
}
.back-link{
  color:#0e1b2a;
  text-decoration:none;
  display:inline-block;
  margin-bottom:20px;
  opacity:.85;
  font-weight:600;
}
.events-hero-content h1{
  font-size:64px;
  margin:0 0 12px;
  letter-spacing:-.02em;
}
.events-season{
  margin:0 0 30px;
  font-size:18px;
  color:#005596;
  font-weight:700;
}
.events-hero-figure{
  position:absolute;
  top:34px;
  right:6%;
  width:260px;
  height:340px;
  background:none;
  opacity:0;
}
.events-shell{
  max-width:1160px;
  margin:0 auto;
  padding:10px 34px 80px;
}
.event-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.event-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:16px 0;
  border-bottom:1px solid rgba(14,27,42,.12);
  cursor:pointer;
}
.event-row:hover{background:rgba(0,85,150,.04);}
.event-row:focus{outline:2px solid rgba(255,206,0,.9);outline-offset:6px;}
.event-row h3{
  margin:0 0 6px;
  font-size:20px;
  font-weight:700;
  color:#0e1b2a;
}
.event-row h3 span{
  font-weight:500;
  color:#005596;
  margin-left:10px;
}
.event-row p{
  margin:0;
  color:#394867;
  font-size:15px;
}
.event-date{
  white-space:nowrap;
  color:#0e1b2a;
  font-weight:700;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  padding:8px 12px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}
/* Footer is global; avoid per-page overrides */

@media(max-width:900px){
  .events-hero-content h1{font-size:52px;}
  .event-row{flex-direction:column;align-items:flex-start;}
  .event-date{order:-1;}
}

.modal[hidden]{display:none;}
.modal-open{overflow:hidden;}
.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:50;
}
.modal-panel{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:min(560px, calc(100% - 32px));
  background:#ffffff;
  border-radius:18px;
  border:1px solid rgba(14,27,42,.14);
  box-shadow:0 30px 80px rgba(0,0,0,.22);
  padding:18px 18px 16px;
  z-index:51;
}
.modal-close{
  position:absolute;
  top:10px;
  right:12px;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(14,27,42,.14);
  background:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}
.modal-panel h2{margin:6px 44px 10px 0;letter-spacing:-.02em;}
.modal-sub{margin:0 0 6px;color:#394867;font-weight:700;}
.modal-desc{margin:10px 0 14px;color:#394867;}
.modal-actions{display:flex;gap:10px;flex-wrap:wrap;}

/* Leaders page */
.leaders-page{
  color:#0e1b2a;
  min-height:100vh;
}
.leaders-hero{
  padding:32px 34px 10px;
}
.leaders-hero h1{
  margin:0 0 6px;
  font-size:52px;
  letter-spacing:-.02em;
}
.leaders-hero p{
  margin:0;
  color:#394867;
  max-width:780px;
}
.leaders-shell{
  max-width:1180px;
  margin:0 auto;
  padding:10px 34px 80px;
}
.leaders-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
}
.leader-card{
  background:#ffffff;
  border:1px solid rgba(14,27,42,.1);
  border-radius:14px;
  padding:16px 18px;
  box-shadow:0 16px 34px rgba(0,0,0,.08);
}
.leader-card h3{
  margin:0 0 8px;
  font-size:20px;
  color:#0e1b2a;
}
.leader-role{
  font-weight:700;
  color:#005596;
  margin-bottom:8px;
  display:block;
}
.leader-focus{
  margin:0;
  color:#394867;
  font-size:14px;
  line-height:1.5;
}
.leader-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.leader-pill{
  padding:6px 10px;
  border-radius:999px;
  background:#eef3f9;
  color:#0e1b2a;
  font-weight:600;
  font-size:12px;
}
.leader-photo{
  width:100%;
  height:200px;
  border-radius:12px;
  object-fit:cover;
  margin-bottom:10px;
  border:1px solid rgba(14,27,42,.1);
}
.leader-photo.placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--blue);
  color:#f7f9ff;
  font-weight:800;
  font-size:32px;
}
.leader-links{
  display:flex;
  gap:10px;
  margin-top:10px;
}
.leader-links a{
  font-size:12px;
  color:#0e1b2a;
  text-decoration:none;
  padding:6px 8px;
  border-radius:8px;
  background:#eef3f9;
  border:1px solid rgba(14,27,42,.1);
}

.leaders-page header nav a,
.leaders-page .brand{color:#0e1b2a;}
.leaders-page nav a::after{background-color:currentColor;}

/* Join page */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.join-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
  margin-top:18px;
}
.join-card{
  background:#ffffff;
  border:1px solid rgba(14,27,42,.1);
  border-radius:16px;
  padding:18px;
  box-shadow:0 16px 34px rgba(0,0,0,.08);
}
.join-card h2{
  margin:10px 0 6px;
  font-size:20px;
  letter-spacing:-.01em;
}
.join-card p{
  margin:0 0 12px;
  color:#394867;
}
.join-badge{
  width:40px;
  height:40px;
  border-radius:12px;
  background:var(--blue);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}
.join-link{
  color:var(--blue);
  font-weight:800;
  text-decoration:none;
}
.join-form{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.join-form input{
  flex:1 1 220px;
  min-width:200px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(14,27,42,.16);
  font-size:14px;
  outline:none;
}
.join-form input:focus{
  border-color:rgba(0,85,150,.6);
  box-shadow:0 0 0 4px rgba(0,85,150,.12);
}
.join-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  margin-top:6px;
}
.join-cta{margin-top:22px;}
.join-page .cta-card{
  background:var(--navy);
}
.join-page .cta-card h2{color:#f8fafc;}
.join-page .cta-card .eyebrow{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.14);color:#f8fafc;}
.card-band > *{
  position:relative;
  z-index:2;
}

@keyframes float{
  0%{transform:rotate(var(--card-rotation)) translateY(var(--card-lift)) scale(var(--card-scale));}
  50%{transform:rotate(var(--card-rotation)) translateY(calc(var(--card-lift) - 10px)) scale(var(--card-scale));}
  100%{transform:rotate(var(--card-rotation)) translateY(var(--card-lift)) scale(var(--card-scale));}
}
@keyframes riseFade{
  from{opacity:0;transform:translateY(26px);}
  to{opacity:1;transform:translateY(0);}
}
@keyframes fadeIn{
  from{opacity:0;transform:scale(.98);}
  to{opacity:1;transform:scale(1);}
}
@keyframes introCard{
  from{opacity:0;transform:rotate(var(--card-rotation)) translateY(40px) scale(.94);}
  to{opacity:1;transform:rotate(var(--card-rotation)) translateY(0) scale(1);}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;}
}

/* Global load animations (opt-in via data-reveal) */
[data-reveal]{
  opacity:0;
  transform:translateY(18px);
  will-change:transform, opacity;
}
.page-enter [data-reveal]{
  animation:riseFade .7s ease forwards;
  animation-delay:var(--delay, 0ms);
}

/* Subtle "alive" motion (opt-in via .breath) */
.breath{
  animation:breath 4.2s ease-in-out infinite;
  transform-origin:center;
}
@keyframes breath{
  0%{transform:translateY(0) scale(1);}
  50%{transform:translateY(-2px) scale(1.01);}
  100%{transform:translateY(0) scale(1);}
}

.btn.breath{animation-duration:3.6s;}
.leader-card.breath{animation-duration:6.2s;}
.event-date.breath{animation-duration:4.8s;}

@media(max-width:960px){
  .shell{padding:30px 22px 60px;}
  .hero-grid{display:flex;flex-direction:column;align-items:center;gap:28px;}
  .hero-visual{order:-1;}
  .hero-copy h1{font-size:48px;}
}

@media(max-width:1024px){
  .card-band::before{display:none;}
  .card-band::after{display:none;}
}

@media(max-width:720px){
  nav{display:none;}
  .shell{padding:24px 18px 50px;}
  .hero-copy h1{font-size:40px;}
  .hero-copy{align-items:flex-start;text-align:left;}
  .hero-grid{align-items:flex-start;}
  .actions{justify-content:flex-start;flex-wrap:wrap;}
  .event-strip{gap:12px;flex-wrap:wrap;justify-content:flex-start;}
  .event-card{width:150px;height:210px;margin-left:0;transform:none;}
  .floating-label:not(.pop-tag){display:none;}
}

@media(max-width:540px){
  .hero-copy h1{font-size:34px;line-height:1.08;}
  .sub{font-size:16px;}
  .btn{width:100%;text-align:center;}
  .event-card{width:130px;height:180px;}
  .hero{gap:16px;}
}

@media(max-width:720px){
  .card-band::before{display:none;}
  .card-band::after{display:none;}
}
