:root {
  --jh-navy:    #0B1F3A;
  --jh-gold:    #F4B400;
  --jh-goldd:   #d9a000;
  --jh-white:   #ffffff;
  --jh-ease:    cubic-bezier(.4,0,.2,1);
    --navy: #0B1F3A;
  --gold: #F4B400;
  --gold-dk: #C9940A;
  --off: #F7F6F2;
  --muted: #6B7280;
  --border: #E5E3DC;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* ── Wrapper ── */
.jh-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--jh-navy);
  /* height is controlled responsively below */
  height: 93vh;
}
/* ── Slides track ── */
.jh-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .72s var(--jh-ease);
  will-change: transform;
}
/* ── Individual slide ── */
.jh-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  cursor: default;
}
.jh-slide.jh-clickable { cursor: pointer; }
/* ── Slide image ── */
.jh-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  /* subtle Ken Burns */
  transform: scale(1.04);
  transition: transform 6s ease-out;
}
.jh-slide.jh-active .jh-slide-img {
  transform: scale(1.0);
}
/* ── Overlay gradient ── */
.jh-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,31,58,.72) 0%,
    rgba(11,31,58,.38) 55%,
    rgba(11,31,58,.10) 100%
  );
  z-index: 1;
}
/* ── Slide content (text layer) ── */
.jh-slide-content {
    display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  padding: 0 80px 0 72px;
  max-width: 680px;
}
/* ── Content animation ── */
.jh-slide-content .jh-tag,
.jh-slide-content .jh-title,
.jh-slide-content .jh-sub,
.jh-slide-content .jh-ctas {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--jh-ease), transform .55s var(--jh-ease);
}
.jh-slide.jh-active .jh-slide-content .jh-tag  { opacity:1; transform:none; transition-delay: .15s; }
.jh-slide.jh-active .jh-slide-content .jh-title { opacity:1; transform:none; transition-delay: .28s; }
.jh-slide.jh-active .jh-slide-content .jh-sub   { opacity:1; transform:none; transition-delay: .42s; }
.jh-slide.jh-active .jh-slide-content .jh-ctas  { opacity:1; transform:none; transition-delay: .56s; }
.jh-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--jh-gold);
  color: var(--jh-navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 3px;
  margin-bottom: 18px;
  width: fit-content;
}
.jh-title {
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 700;
  color: var(--jh-white);
  line-height: 1.18;
  margin: 0 0 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.jh-title em {
  font-style: normal;
  color: var(--jh-gold);
}
.jh-sub {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 520px;
}
.jh-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.jh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jh-gold);
  color: var(--jh-navy);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(244,180,0,.38);
  transition: background .18s, transform .18s, box-shadow .18s;
}
.jh-btn-primary:hover {
  background: var(--jh-goldd);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,180,0,.48);
  color: var(--jh-navy);
  text-decoration: none;
}
.jh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--jh-white);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .18s, background .18s, transform .18s;
}
.jh-btn-secondary:hover {
  border-color: var(--jh-white);
  background: rgba(255,255,255,.10);
  transform: translateY(-2px);
  color: var(--jh-white);
  text-decoration: none;
}
/* ── Stats bar (bottom overlay) ── */
.jh-ticker-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.99);
  border-top: 2.5px solid #F4B400;
  overflow: hidden;
  z-index: 5;
}
.jh-ticker-bar::before,
.jh-ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.jh-ticker-bar::before { left: 0;  background: linear-gradient(to right, #0B1F3A 40%, transparent); }
.jh-ticker-bar::after  { right: 0; background: linear-gradient(to left,  #0B1F3A 40%, transparent); }
.jh-ticker-track {
  display: flex;
  align-items: center;
  height: 72px;
  width: max-content;
  animation: jhTick 30s linear infinite;
}
.jh-ticker-track:hover { animation-play-state: paused; }
@keyframes jhTick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.jh-ticker-track img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin: 0 40px;
  opacity: 0.92;
  /* filter: brightness(0) invert(1); */
  transition: opacity 0.25s;
  flex-shrink: 0;
}
.jh-ticker-track img:hover { opacity: 1; }
.jh-dots { bottom: 86px; }
/* update dots offset */
.jh-dots { bottom: 80px; }
/* ── Prev / Next arrows ── */
.jh-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px; height: 46px;
  background: rgba(11,31,58,.7);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--jh-white);
  font-size: 16px;
  cursor: pointer;
  transition: background .18s, border-color .18s, transform .18s;
  backdrop-filter: blur(4px);
  margin-top: -30px; /* offset for stats bar */
}
.jh-arrow:hover {
  background: var(--jh-gold);
  border-color: var(--jh-gold);
  color: var(--jh-navy);
  transform: translateY(-50%) scale(1.08);
  margin-top: -30px;
}
.jh-prev { left: 18px; }
.jh-next { right: 18px; }
/* ── Dot indicators ── */
.jh-dots {
  position: absolute;
  bottom: 90px; /* above stats bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.jh-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1.5px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .22s, width .22s, border-radius .22s, border-color .22s;
}
.jh-dot.jh-active {
  width: 28px;
  border-radius: 4px;
  background: var(--jh-gold);
  border-color: var(--jh-gold);
}
/* ── Progress bar ── */
.jh-progress {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  background: var(--jh-gold);
  z-index: 7;
  width: 0%;
  transition: width linear;
  opacity: .85;
}
/* ── Responsive ── */
@media (max-width: 1024px) {
    .jh-hero { height: 535px; }
}
@media (max-width: 991px) {
  .jh-hero { height: 420px; }
  .jh-slide-content { padding: 0 24px; max-width: 100%; }
  .jh-stats { display: none; }
  .jh-dots { bottom: 18px; }
  .jh-arrow { width: 38px; height: 38px; font-size: 13px; margin-top: 0; }
  .jh-arrow:hover { margin-top: 0; }
  .jh-dots {display: none;}
}
@media (max-width: 575px) {
  .jh-hero { height: 250px; }
  .jh-slide-content { padding: 0 18px; }
  .jh-title { font-size: 22px; }
  .jh-sub { display: none; }
  .jh-ctas { gap: 10px; }
  .jh-btn-primary, .jh-btn-secondary { font-size: 12px; padding: 10px 16px; }
  /* .jh-arrow { display: none; } */
  .jh-dots {display: none;}
}
/* ── ABOUT SECTION ── */
.about-sec {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-row {
  display: flex;
  min-height: 520px;
}
.about-left {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 48px 48px 48px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
.video-top {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: #000;
  min-height: 0;
}
.video-top iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
  display: block;
}
.video-bottom {
  flex-shrink: 0;
  padding: 20px 24px 20px 32px;
  background: var(--off);
  border-left: none;
}
.video-bottom .v-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.video-bottom .v-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-bottom .v-meta a {
  color: var(--gold-dk);
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.video-bottom .v-meta a:hover { text-decoration: underline; }
/* Left col reused styles */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.about-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
.about-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--muted);
}
.about-stats {
  display: flex;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--off);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 3px;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.acred-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.acred-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}
.acred-pill i { color: var(--gold-dk); font-size: 10px; }
.btn-jis {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 24px;
  transition: background .15s;
}
.btn-jis:hover { background: #FFD54F; color: var(--navy); text-decoration: none; }
.btn-jis-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 5px;
  border: 1.5px solid var(--navy);
  text-decoration: none;
  margin-top: 24px;
  margin-left: 10px;
  transition: all .15s;
}
.btn-jis-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }
@media (max-width: 991px) {
  .about-row { flex-direction: column; min-height: auto; }
  .about-left { flex: none; max-width: 100%; padding: 40px 0 32px; border-right: none; border-bottom: 1px solid var(--border); }
  .about-right { flex: none; max-width: 100%; min-height: 380px; }
  .video-top { min-height: 300px; position: relative; }
}
.campuses-sec {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0 44px;
}
/* header */
.campuses-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.campuses-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.3px;
  line-height: 1.2;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background .15s;
}
.btn-view-all:hover { background: #162f56; color: #fff; text-decoration: none; }
.s-arrow {
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 12px;
  transition: all .15s;
  flex-shrink: 0;
}
.s-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.s-arrow:active { transform: scale(.94); }
.s-arrow:disabled { opacity: .35; pointer-events: none; }
/* viewport */
.slider-viewport {
  overflow: hidden;
  position: relative;
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
/* card — image-forward, compact bottom */
.campus-card {
  flex-shrink: 0;
  width: calc((100% - 40px) / 3); /* 3 visible */
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.campus-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(11,31,58,0.09);
  transform: translateY(-3px);
  text-decoration: none;
}
/* image area — fixed ratio 16:10 */
.campus-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 62.5%; /* 16:10 ratio */
  overflow: hidden;
  background: #ddd;
}
.campus-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.campus-card:hover .campus-img-wrap img { transform: scale(1.04); }
/* overlay on hover */
.campus-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0);
  transition: background .3s;
}
.campus-card:hover .campus-img-wrap::after { background: rgba(11,31,58,0.12); }
/* bottom strip */
.campus-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.campus-info {}
.campus-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 2px;
}
.campus-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.campus-cat i { color: var(--gold-dk); font-size: 7px; margin-right: 3px; }
.campus-go {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--off);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 10px;
  transition: background .15s, border-color .15s, color .15s;
}
.campus-card:hover .campus-go {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
/* dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 24px;
}
.s-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .22s, background .22s;
}
.s-dot.active { width: 20px; background: var(--navy); }
/* responsive card widths */
@media (max-width: 991px) {
  .campus-card { width: calc((100% - 20px) / 2); }
}
@media (max-width: 575px) {
  .campus-card { width: 100%; }
  .campuses-heading { font-size: 20px; }
}
.courses-sec {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0 48px;
}
/* header */
.courses-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.courses-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.3px;
  line-height: 1.2;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 5px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s;
}
.btn-view-all:hover { background: #162f56; color: #fff; text-decoration: none; }
/* ── GRID LAYOUT ── */
/* 5 cols top row, 5 cols bottom row — using CSS grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
/* each course tile */
.course-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4/3;
  background: var(--navy);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
}
.course-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(11,31,58,0.16);
  text-decoration: none;
}
/* background image */
.course-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .3s;
  opacity: 0.72;
}
.course-tile:hover img {
  transform: scale(1.06);
  opacity: 0.55;
}
/* gradient overlay */
.course-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.2) 55%, transparent 100%);
  z-index: 1;
}
/* content */
.tile-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10px 12px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
}
.tile-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: .01em;
}
.tile-arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 8px;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .2s, transform .2s;
}
.course-tile:hover .tile-arrow {
  opacity: 1;
  transform: scale(1);
}
/* colour fallbacks when no image */
.course-tile.c1 { background: #122742; }
.course-tile.c2 { background: #14304f; }
.course-tile.c3 { background: #0d2035; }
.course-tile.c4 { background: #0f2840; }
.course-tile.c5 { background: #163048; }
/* featured first tile — spans 2 rows */
.course-tile.featured {
  grid-row: span 2;
  aspect-ratio: unset;
}
.course-tile.featured .tile-name { font-size: 15px; }
/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .courses-grid { grid-template-columns: repeat(3, 1fr); }
  .course-tile.featured { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 575px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .course-tile.featured { grid-row: span 1; aspect-ratio: 4/3; }
  .courses-heading { font-size: 20px; }
}
/* ── SECTION ── */
.events-sec {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0 48px;
}
/* ── HEADER ── */
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 8px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.events-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.3px;
  line-height: 1.2;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 5px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s;
}
.btn-view-all:hover { background: #162f56; color: #fff; text-decoration: none; }
/* ── GRID: 3 cards in 1 row ── */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
/* ── BASE CARD ── */
.ev-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  text-decoration: none;
}
.ev-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(11,31,58,0.09);
  transform: translateY(-3px);
  text-decoration: none;
}
/* ── UNIFIED CARD (can be video OR image) ── */
.ev-grid-card {
  flex-direction: column;
}
.ev-grid-card .ev-media {
  position: relative;
  padding-top: 100%; /* 1:1 aspect ratio */
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
}
/* Video iframe */
.ev-grid-card .ev-media iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
/* Image */
.ev-grid-card .ev-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ev-grid-card:hover .ev-media img { transform: scale(1.06); }
/* ── SHARED BODY ── */
.ev-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.ev-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ev-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ev-date i { color: var(--gold-dk); font-size: 9px; }
.ev-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  background: #EEF2F7;
  color: var(--navy);
}
.ev-badge.video { background: #FFF4CC; color: #7A5600; }
.ev-badge.award { background: #FFE8F0; color: #8B0036; }
.ev-badge.event { background: #E0F2FE; color: #075985; }
.ev-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  flex: 1;
}
.ev-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dk);
  text-decoration: none;
  letter-spacing: .04em;
  margin-top: auto;
  transition: color .15s;
}
.ev-link:hover { color: var(--navy); text-decoration: none; }
.ev-link i { font-size: 9px; }
/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .events-grid { grid-template-columns: 1fr; }
  .events-heading { font-size: 20px; }
}
