/* ====== Base ====== */
.site {
  background: #000; 
}

/* ====== Topbar ====== */
.site-topbar { background: #f8f9fa; }
.site-topbar__link,
.site-topbar__icon {
  color: #212529;
  text-decoration: none;
}

.site-topbar__icon:hover,
.site-topbar__link:hover { opacity: .75; }

.site-topbar__watch-btn { border-radius: 999px; }

/* ====== Logo ====== */
.site-logo {
  height: 65px;
}

/* =========================================
   HERO CAROUSEL (NEW) — replaces old hero CSS
========================================= */

:root{
  --hero-h: 520px;          /* desktop hero height */
  --hero-h-md: 440px;       /* tablet */
  --hero-h-sm: 360px;       /* mobile */
  --dot-size: 10px;
}

.hero-carousel{
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-carousel .hero-track{
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 600ms ease;
  will-change: transform;
}

.hero-carousel .hero-slide{
  position: relative;
  flex: 0 0 100%;
  height: var(--hero-h);
  min-height: 280px;
}

.hero-carousel .hero-slide .bg{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-carousel .hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.10) 70%,
    rgba(0,0,0,.25) 100%
  );
  pointer-events:none;
}

.hero-carousel .content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-carousel .inner{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-carousel .headline{
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.hero-carousel .headline .kicker{
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(22px, 3vw, 44px);
  margin-bottom: 10px;
}

.hero-carousel .headline h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.8vw, 58px);
  font-weight: 900;
}

.hero-carousel .headline p{
  margin: 0;
  font-size: clamp(14px, 1.5vw, 18px);
  opacity: .92;
  max-width: 56ch;
}

.hero-carousel .actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-carousel .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
  color: #fff;
  background: rgba(0,0,0,.35);
}
.hero-carousel .btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}

.hero-carousel .btn.primary{
  background: rgba(120, 50, 255, .55);
  border-color: rgba(255,255,255,.22);
}

/* Controls */
.hero-carousel .nav{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events:none;
  z-index: 3;
}

.hero-carousel .arrow{
  pointer-events:auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, opacity .15s ease;
}
.hero-carousel .arrow:hover{
  transform: scale(1.05);
  opacity: .95;
}

.hero-carousel .dots{
  position:absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display:flex;
  gap: 10px;
  z-index: 3;
}

.hero-carousel .dot{
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.25);
  cursor:pointer;
}

.hero-carousel .dot.active{
  background: rgba(255,255,255,.95);
}

/* Responsive */
@media (max-width: 980px){
  .hero-carousel .hero-slide{ height: var(--hero-h-md); }
  .hero-carousel .inner{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px){
  .hero-carousel .hero-slide{ height: var(--hero-h-sm); }
  .hero-carousel .nav{ padding: 0 6px; }
  .hero-carousel .arrow{ width: 40px; height: 40px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-carousel .hero-track{ transition: none; }
}

/* ====== Headings / Sections ====== */
.site-h2 {
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.site-section--alt { background: #f6f7f9; }

/* ====== Mini card (The Latest 4-up) ====== */
.site-mini-card {
  display: block;
  text-decoration: none;
  color: #111;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.site-mini-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.site-mini-card span {
  display: block;
  padding: .6rem .75rem;
  font-weight: 700;
  font-size: .9rem;
}

/* ====== Panels ====== */
.site-panel { background: #fff; }
.site-panel--dark { background: #212529; }
.site-panel__img { width: 90px; height: auto; }

/* ====== Spotlight list ====== */
.site-spotlight {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.site-spotlight img {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  object-fit: cover;
}

/* ====== Banner ====== */
.site-banner {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
}
.site-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.site-banner__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.10));
  color: #fff;
  padding: 16px;
}
.site-banner__title {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
}
.site-banner__text { opacity: .95; }

/* ====== Featured tiles ====== */
.site-feature-tile {
  display: flex;
  align-items: end;
  min-height: 170px;
  padding: 12px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.site-feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65), rgba(0,0,0,.05));
}
.site-feature-tile span {
  position: relative;
  font-weight: 800;
}

/* ====== Social Icons ====== */
.site-social {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f0f1f3;
  color: #111;
  text-decoration: none;
}
.site-social:hover { opacity: .8; }

/* ====== Footer ====== */
.site-footer { background: #111; }
.site-footer__social {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.10);
  color: #fff;
  text-decoration: none;
}
.site-footer__social:hover { opacity: .8; }

#jdr-hero-image{
	width:100%;
}
#jdr-hero-image img{
	width:100%; 
}