/* Editorial carousel: slides share one grid cell to keep the card height stable. */
.hero-carousel{position:relative;display:grid;min-width:0;overflow:hidden;border-radius:6px;background:var(--brand)}
.hero-slides{display:grid;min-width:0;grid-area:1/1}
.hero-slide{grid-area:1/1;display:flex;min-width:0;visibility:hidden;opacity:0;pointer-events:none;transition:opacity .75s ease,visibility 0s linear .75s}
.hero-slide.is-active{visibility:visible;opacity:1;pointer-events:auto;z-index:1;transition:opacity .75s ease}
.hero-slide>.card-hero{width:100%;height:100%;border-radius:0}
.hero-carousel .card-hero .card-body{margin-bottom:42px}
.hero-dots{position:absolute;left:34px;bottom:18px;z-index:3;display:flex;align-items:center;gap:12px;pointer-events:none}
.hero-dot{display:block;width:7px;height:7px;border-radius:50%;background:#ffffff88;transition:transform .25s ease,background .25s ease}
.hero-dot.is-active{background:var(--accent);transform:scale(1.25)}
.hero-carousel-controls{position:absolute;inset:auto 26px 18px;z-index:3;display:flex;align-items:center;justify-content:space-between;gap:12px;color:#fff}
.hero-arrows{display:flex;align-items:center}
.hero-arrows{gap:7px}
.hero-arrows>button,.hero-autoplay{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid #ffffff55;border-radius:50%;background:#03144470;color:#fff;cursor:pointer}
.hero-arrows>button:hover,.hero-autoplay:hover{background:var(--brand)}
.hero-arrows [data-hero-prev] .icon{transform:rotate(180deg)}
.hero-counter{font-size:11px;white-space:nowrap;color:#d8deeb;font-variant-numeric:tabular-nums}
.hero-counter [data-hero-current]{color:#fff;font-weight:700}
.hero-autoplay{position:absolute;top:18px;right:20px;z-index:3;width:36px;height:36px;font-size:17px}
.hero-play-icon,.hero-autoplay.is-paused .hero-pause-icon{display:none}
.hero-autoplay.is-paused .hero-play-icon{display:inline-flex}
.hero-play-icon .icon{width:15px;height:15px}
.hero-carousel-controls[hidden],.hero-autoplay[hidden]{display:none}
@media(max-width:600px){
  .hero-carousel-controls{inset:auto 18px 14px;gap:6px}
  .hero-carousel .card-hero .card-body{margin-bottom:34px}
  .hero-dots{left:23px;bottom:14px;gap:9px}
  .hero-dot{width:6px;height:6px}
  .hero-arrows{gap:5px}
  .hero-arrows>button{width:36px;height:44px;border-radius:5px}
  .hero-counter{font-size:10px}
  .hero-autoplay{top:14px;right:16px}
}
@media(prefers-reduced-motion:reduce){.hero-dot{transition:none}.hero-slide{transition:none}}
@media print{.hero-carousel-controls,.hero-autoplay{display:none!important}.hero-slide:not(.is-active){display:none}.hero-carousel .card-hero .card-body{margin-bottom:30px}}
