:root{
  --bg:#ffffff;
  --txt:#121212;
  --muted:#6f6f6f;
  --line:#d7d7d7;
  --card:#f1f1f1;

  --shadow: 0 18px 45px rgba(0,0,0,.10);
  --shadow-xl: 0 26px 70px rgba(0,0,0,.10);
  --shadow-soft: 0 12px 26px rgba(0,0,0,.05);

  --r:18px;
  --r2:26px;

  --newsTitle: clamp(20px, 2.1vw, 30px);
  --newsText: 17px;

  --cal-gap: 10px;
  --cal-num: 34px;
  --cal-week: 15px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  background:var(--bg);
  color:var(--txt);
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  line-height:1.45;
}

a{color:inherit;text-decoration:none}

.container{
  max-width:1120px;
  margin:0 auto;
  padding:26px 18px;
}

.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;
}

.logoHeader{
  background:#fff;
  padding:42px 18px 28px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.logoHeader img{
  height:auto;
  width:min(800px, 82vw);
  max-width:100%;
  display:block;
}

.hero{padding:0}

.slider{
  position:relative;
  border-radius:0;
  overflow:hidden;
  background:#111;
  box-shadow:var(--shadow);
  min-height:420px;
}

.slides{
  display:flex;
  transition:transform .55s ease;
  height:100%;
}

.slide{
  min-width:100%;
  position:relative;
  height:420px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
}

.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.78));
}

.overlay{
  position:relative;
  width:100%;
  padding:26px;
  color:#fff;
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:end;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.10);
  width:fit-content;
  font-size:13px;
  letter-spacing:.2px;
}

.dot{
  width:8px;height:8px;
  border-radius:999px;
  background:#fff;
  opacity:.95;
}

.overlay h1{
  margin:10px 0 8px;
  font-family:'Inter', system-ui, -apple-system, sans-serif;
  font-size:clamp(30px,3.6vw,54px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:.2px;
}

.overlay p{
  margin:0;
  max-width:65ch;
  opacity:.92;
  font-size:16px;
}

.heroCta{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.heroMore{
  border:1px solid rgba(255,255,255,.55);
  background:rgba(0,0,0,.25);
  color:#fff;
  padding:12px 16px;
  border-radius:999px;
  font-size:14px;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  white-space:nowrap;
}

.heroMore:hover{
  transform: translateY(-1px);
  background:rgba(0,0,0,.35);
  border-color:rgba(255,255,255,.75);
}

.heroMore[hidden]{display:none !important}

.controls{
  position:absolute;
  inset:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  pointer-events:none;
  padding:0 18px;
}

.arrow{
  pointer-events:auto;
  background:none;
  border:none;
  color:#fff;
  font-size:64px;
  font-weight:300;
  line-height:1;
  cursor:pointer;
  opacity:0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, color .18s ease;
}

.slider:hover .arrow{ opacity:1; transform: translateY(0); }
.arrow:hover{ color:#fff; transform: translateY(-2px); }
.arrow:focus-visible{ outline:none; text-shadow:0 0 12px rgba(255,255,255,.6); }

.dots{
  position:absolute;
  left:0;right:0;bottom:14px;
  display:none !important;
}

.newsWrap{ margin-top:14px; }

.newsCard{
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:0;
  box-shadow:var(--shadow);
  padding:0;
}

.newsShare,
.newsClose{
  position:absolute;
  top:10px;
  width:42px;height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  background:transparent;
  cursor:pointer;
  color:rgba(0,0,0,.55);
  transition: color .15s ease, transform .15s ease;
  z-index:10;
  pointer-events:auto;
}

.newsShare{right:54px;font-size:18px}
.newsClose{right:12px;font-size:34px;line-height:1;font-weight:400}
.newsShare:hover,
.newsClose:hover{color:rgba(0,0,0,.85);transform:translateY(-1px)}

.newsInner{ padding-top:48px; }

.newsTitle{
  width:80%;
  margin:0 0 40px 10.6%;
  text-align:left;
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight:900;
  letter-spacing:-0.02em;
  line-height:1.1;
}

#newsText{ white-space: pre-line; }

.newsText{
  margin:0 0 40px;
  color:rgba(0,0,0,.72);
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:17px;
  line-height:1.7;
  font-weight:500;
  letter-spacing:0;
}


.newsText b,
.newsText strong{
  color:#111;
  font-weight:800;
}


.newsTextWrap{
  max-width:100ch;
  margin:0 auto;
  padding:0 6px;
  text-align:left;
}

.newsVideoWrap{
  margin-top:14px;
  width:100%;
}

.newsVideoWrap video{
  width:100%;
  height:auto;
  display:block;
}

.sectionSlogan{
  margin:50px 0;
  text-align:center;
  font-size:clamp(28px, 4vw, 44px);
  font-weight:900;
  letter-spacing:.6px;
  line-height:1.05;
  text-transform:uppercase;
  font-family:'Inter', system-ui, -apple-system, sans-serif;
}

section{padding:22px 0}

.titleRow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.selectWrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin-bottom:28px;
}

.select{
  appearance:none;
  padding:12px 42px 12px 14px;
  border-radius:0;
  border:1px solid #e7e7e7;
  background:#fff;
  color:var(--txt);
  font-size:15px;
  font-weight:600;
  letter-spacing:.6px;
  outline:none;
  cursor:pointer;
  box-shadow: var(--shadow-soft);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%, 0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.select:hover{border-color:#dbdbdb}

select.select{
  text-align:center;
  text-align-last:center;
}

select.select option{ text-align:left; }

.editorial{padding:32px 0 10px}

.editorialGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.editorialCard{cursor:default}

.editorialCard img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
  transition: transform .35s ease;
}

.editorialCard:hover img.newsThumb{
  border:solid 4px;
  border-color:#000;
}

.editorialCard h3{
  margin:12px 0 8px;
  font-family:'Inter', system-ui, -apple-system, sans-serif;
  font-size:21px;
  font-weight:600;
  line-height:1.15;
  text-align:center;
  letter-spacing:.1px;
}

.editorialCard p{
  margin:0;
  color:rgba(0,0,0,.78);
  font-size: var(--newsText);
  line-height:1.62;
  font-weight:500;
  text-align:left;
}

.editorialTextWrap{
  max-width:52ch;
  margin:0 auto;
  padding:0 6px;
}

.editorialCard .newsThumb,
.editorialCard .newsHeadline{cursor:pointer}

.editorialCard .newsThumb:hover{box-shadow: 0 0 0 3px #c00000 inset}

.editorialCard .newsHeadline{
  transition: color .15s ease;
}

.editorialCard .newsHeadline:hover{color:#c00000}


.pageNums{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}

.pageEllipsis{
  width:40px;height:40px;
  display:grid;
  place-items:center;
  color:#777;
}

.pageBtn,
.pageNum{
  width:40px;height:40px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  background:#fff;
  color:var(--txt);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.pageBtn:hover,
.pageNum:hover{background:#f5f5f5;border-color:rgba(0,0,0,.35)}

.pageNum.active{background:var(--txt);color:#fff;border-color:var(--txt)}
.pageBtn:disabled{opacity:.35;cursor:default}

.calendarWrap{margin-top:14px}

.calendarCard{
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--r2);
  background:#fff;
  box-shadow: var(--shadow-xl);
  overflow:hidden;
}

.calTop{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  padding:22px 20px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.calTop > div:first-child{
  justify-self:center;
  text-align:center;
}

.calTop .month{
  font-family:'Inter', system-ui, -apple-system, sans-serif;
  font-weight:900;
  letter-spacing:.4px;
  font-size:32px;
  color:var(--txt);
  white-space:nowrap;
}

.calTop .actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.badge{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.70);
  color:var(--txt);
  font-weight:900;
  letter-spacing:.15px;
  font-size:13px;
  white-space:nowrap;
}

.badge.muted{
  font-weight:800;
  color:rgba(0,0,0,.70);
  background: rgba(255,255,255,.55);
}

.badge.selectedDate{
  font-size:15px;
  padding:11px 16px;
}

.iconBtn{
  width:46px;height:46px;
  background:#fff;
  border:1px solid rgba(0,0,0,.18);
  border-radius:999px;
  color:var(--txt);
  font-size:22px;
  font-weight:400;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}

.iconBtn:hover{
  background:#f5f5f5;
  border-color:rgba(0,0,0,.35);
  transform:translateY(-1px);
}

#calPrev,
#calNext{
  font-size:34px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-bottom:8px;
}

#jumpToday{font-size:24px;line-height:1}

.calBody{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:0;
}

.grid{
  padding:16px;
  border-right:1px solid rgba(0,0,0,.08);
}

.weekdays{
  display:grid;
  grid-template-columns:repeat(7, minmax(0,1fr));
  gap:var(--cal-gap);
  padding:10px 2px 16px;
  color:rgba(0,0,0,.65);
  font-size:var(--cal-week);
  letter-spacing:.35px;
  text-transform:uppercase;
  text-align:center;
  align-items:center;
}

.weekdays > div:last-child{color:#c00000}

.days{
  display:grid;
  grid-template-columns:repeat(7, minmax(0,1fr));
  gap:var(--cal-gap);
}

.spacer{
  aspect-ratio:1 / 1;
  border:none;
  background:transparent;
  box-shadow:none;
}

.day{
  border:1px solid rgba(255,255,255,.95);
  border-radius:18px;
  background:rgba(255,255,255,.72);
  aspect-ratio:1 / 1;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .12s ease,box-shadow .12s ease,border-color .12s ease,background .12s ease;
  color:var(--txt);
  min-width:0;
}

.day.today{outline:2px solid rgba(0,0,0,.12)}

.day.hasEvent{cursor:pointer}

.day.hasEvent:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  border-color:#fff;
  background:#fff;
}

.day.hasEvent.selected{
  border-color:#fff;
  box-shadow:0 28px 60px rgba(0,0,0,.14);
  background:#fff;
}

.day.noEvent{
  cursor:default;
  opacity:1;
  background:rgba(255,255,255,.55);
  border-color:rgba(255,255,255,.85);
}

.day.noEvent:hover{
  transform:none;
  box-shadow:none;
  border-color:rgba(255,255,255,.95);
  background:rgba(255,255,255,.72);
}

.num{
  font-weight:400;
  font-size:var(--cal-num);
  letter-spacing:.5px;
  color:var(--txt);
  line-height:1;
  font-family:'Inter', system-ui, -apple-system, sans-serif;
}

.day.holiday .num{color:#c00000;font-weight:700}
.day.noEvent .num{color:rgba(0,0,0,.35);font-weight:400}
.day.noEvent.holiday .num{color:rgba(192,0,0,.55);font-weight:700}

.side{padding:16px;background:#fff}

.posterFrame{
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.70);
  overflow:hidden;
  height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.posterFrame img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#fff;
  display:block;
}

.sponsorSection{ margin-top:10px; }

.sponsorCard{
  background:#fff;
  border-radius:16px;
  padding:12px;
}

.sponsorSlider{ position:relative; }

.sponsorViewport{
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:6px 44px;
}

.sponsorViewport::-webkit-scrollbar{ display:none; }

.sponsorTrack{
  display:flex;
  gap:60px;
  align-items:center;
  width:max-content;
}

.sponsorItem{
  display:block;
  flex:0 0 auto;
  width:300px;
  height:200px;
  scroll-snap-align:start;
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

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

.sponsorArrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:34px;height:34px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.92);
  cursor:pointer;
  z-index:2;
  opacity:0;
  pointer-events:none;
  transition: opacity .08s ease;
}

.sponsorArrow.prev{ left:6px; }
.sponsorArrow.next{ right:6px; }

.sponsorSlider.is-hovered .sponsorArrow{
  opacity:1;
  pointer-events:auto;
}

@media (hover:hover) and (pointer:fine){
  .sponsorSlider.is-hovered:not(.is-playing) .sponsorArrow{
    opacity:1;
    pointer-events:auto;
  }
}

.siteFooter{
  width:100%;
  background:#000;
  color:#d1d5db;
  padding:26px 18px 22px;
  text-align:center;
  font-family:'Inter', system-ui, -apple-system, sans-serif;
}

.footerInner{
  max-width:1120px;
  margin:0 auto;
  padding:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  text-align:center;
}

.footer-social{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
}

.footer-social a{
  color:#d1d5db;
  font-size:1.4rem;
  text-decoration:none;
  transition: color .2s ease, transform .2s ease;
}

.footer-social a:hover{color:#fff;transform:translateY(-2px)}

.footer-email{
  display:block;
  margin-top:10px;
  font-size:16px;
  font-weight:500;
  letter-spacing:.4px;
  color:#9ca3af;
  text-decoration:none;
  transition: color .2s ease;
}

.footer-email:hover{color:#fff}

.backTop{
  color:#d1d5db;
  font-size:1.5rem;
  transition: color .2s ease, transform .2s ease;
  cursor:pointer;
}

.backTop:hover{color:#fff;transform:translateY(-2px)}

.footer-copy{
  margin-top:14px;
  font-size:14px;
  font-weight:400;
  letter-spacing:.3px;
  color:#CCC;
  opacity:.8;
}

@media (max-width:980px){
  .calBody{grid-template-columns:1fr}
  .grid{border-right:none;border-bottom:1px solid rgba(0,0,0,.08)}
  .posterFrame{height:520px}
}

@media (max-width:900px){
  .editorialGrid{grid-template-columns:1fr}
  .editorialTextWrap{ max-width:68ch; }
}

@media (min-width:768px){
  .editorialCard .newsHeadline{
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .editorialCard .editorialTextWrap p{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
}

@media (max-width:768px){
  .hero .heroMore{
    padding:10px 14px;
    font-size:12px;
    letter-spacing:.5px;
    margin-right:5px;
  }
}

@media (max-width:720px){
  .calTop .actions{
    width:100%;
    display:flex;
    flex-wrap:nowrap;
    justify-content:space-between;
    align-items:center;
    gap:8px;
  }

  .calendarCard .calTop{
    flex-direction:column;
    align-items:stretch;
    gap:8px;
  }

  .calendarCard .calTop .actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:8px;
  }

  .calendarCard .calTop .actions .badge{
    flex:1 1 100%;
    text-align:center;
    order:1;
  }

  .calendarCard .calTop .actions .iconBtn{
    order:2;
    margin-top:4px;
  }

  #countdownLabel{
    font-size:1.1rem;
    font-weight:600;
  }

  #selectedLabel{
    font-size:1.25rem;
    font-weight:700;
  }

  .sponsorArrow{ display:none; }
  .sponsorViewport{ padding:6px 0; }
  .sponsorItem{ width:300px; height:200px; }
  .sponsorTrack{ gap:12px; }

}

@media (max-width:520px){
  :root{
    --newsTitle: clamp(18px, 5.2vw, 24px);
    --newsText: 16px;
    --cal-gap: 5px;
    --cal-num: 24px;
    --cal-week: 12px;
  }

  .logoHeader{ padding:28px 18px 18px; }
  .logoHeader img{ width:min(420px, 86vw); }

  .newsCard{ padding:16px 20px 20px; }
  .newsInner{ padding-top:46px; }
  .newsTextWrap{ max-width:92vw; padding:0 4px; }

  .newsTitle{
    width:94%;
    margin-left:2%;
    margin-right:0;
  }

  .editorialTextWrap{ max-width:92vw; padding:0 4px; }
  .editorialCard h3{ font-size:20px; }

  .calTop{
    grid-template-columns:1fr;
    row-gap:14px;
  }

  .calTop > div:first-child{justify-self:center}
  .calTop .month{font-size:26px}
  .calTop .actions{justify-content:center;flex-wrap:wrap;gap:10px}

  .posterFrame{height:480px}
  .grid{ padding:10px 8px; }
  .weekdays{ padding:8px 0 10px; }
  .day{ border-radius:14px; }
}

@media (max-width:420px){
  .calTop{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  .calTop > div:first-child{
    width:100%;
    display:flex;
  }

  .calTop .month{
    width:100%;
    text-align:center;
  }

  .calTop .actions{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:nowrap;
    gap:8px;
  }

  .calTop .actions .badge,
  .calTop .actions .iconBtn{
    flex:0 0 auto;
    white-space:nowrap;
  }

  .sectionSlogan{
    margin-top:16px;
    margin-bottom:12px;
    line-height:1.2;
  }
}

@media (max-width:340px){
  .container{ padding-left:10px; padding-right:10px; }
  .grid{
    padding:8px 6px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .weekdays, .days{ min-width:300px; }

  :root{
    --cal-gap: 4px;
    --cal-num: 22px;
    --cal-week: 11px;
  }

  .day{ border-radius:12px; }
}

@media (max-width:300px){
  .container{ padding-left:8px; padding-right:8px; }
  .grid{ padding:6px 4px; }
  .weekdays, .days{ min-width:280px; }

  :root{
    --cal-gap: 3px;
    --cal-num: 20px;
    --cal-week: 10px;
  }

  .day{ border-radius:10px; }
}

@media (max-width:720px){
  /* Mobile fix: long slide titles were getting clipped (fixed slide height + slider overflow:hidden). */
  .slider{ min-height:520px; }
  .slide{ height:auto; min-height:520px; }

  /* Option A (DEFAULT): clamp titles so the beginning is always visible */
  .slide .overlay h1{
    font-size:clamp(22px, 6.2vw, 34px);
    line-height:1.12;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    overflow:hidden;
  }

  /* Option B: show the full title (no clamp). If you want this, comment Option A above and uncomment:
  .slide .overlay h1{
    display:block;
    overflow:visible;
  }
  .slider{ min-height:unset; }
  .slide{ min-height:unset; }
  */

  .slide .overlay{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .slide .overlay > div:first-child{ width:100%; }

  .slide .overlay .heroCta{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .slide .overlay .heroCta .heroMore{
    width:auto;
    max-width:100%;
  }
}

.sponsorSlider.one .sponsorViewport{
  display:flex;
  justify-content:center;
  padding:6px 0;    
  overflow-x:hidden; 
}

.sponsorSlider.one .sponsorTrack{
  width:auto;  
}

.sponsorSlider.one .sponsorArrow{
  display:none;
}

.newsVideoWrap{ position:relative; }

.videoPosterBtn{
  position:absolute;
  inset:0;
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
}

.newsVideoWrap{
  position: relative;
}

#newsVideo{
  display: block;
  width: 100%;
  height: auto;
}

#videoPosterBtn{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;

  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
}

.newsVideoWrap{
  position: relative;
}

#newsVideo{
  display: block;
  width: 100%;
  height: auto;
}

#videoPosterBtn{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
}

#videoPosterBtn::before{
  content: "";
  width: 0;
  height: 0;

  border-left: 40px solid #ffffff;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;

  transition: border-left-color 0.2s ease;
}

#videoPosterBtn:hover::before{
  border-left-color: #c40000;
}

#videoPosterBtn[hidden]{
  display: none !important;
}

.pageNums{ display:none !important; }

.pager{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;       
  margin-top:30px; 
  min-height:44px;
}

.pager .pageBtn{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pager .pageIndicator{
  height:44px;
  min-width:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  line-height:1;
}

