/* ---------- WR CAROUSEL SLIDER CORE ---------- */
.wr_carousel_slider_section{position:relative;background:#fff}
.wr_carousel_slider_heading{font-size:2.2rem;margin-bottom:10px}
.wr_carousel_slider_intro{font-size:1rem;color:#555;margin-bottom:30px}
.wr_carousel_slider_wrapper .wr_carousel_slider_item{
text-align:center;
padding:0 10px;
}
.wr_carousel_slider_wrapper .wr_carousel_slider_item img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
}
.wr_carousel_slider_title{
margin-top:12px;
font-size:1.05rem;
font-weight:600;
}
/* Arrows */
.wr_carousel_slider_arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,.45);
color:#fff;
border:none;
width:44px;
height:44px;
border-radius:50%;
font-size:18px;
cursor:pointer;
z-index:10;
transition:background .3s;
}
.wr_carousel_slider_arrow:hover{background:rgba(0,0,0,.7)}
.wr_carousel_slider_left{left:-50px}
.wr_carousel_slider_right{right:-50px}
/* Responsive visibility of arrows */
@media (max-width: 991px){
.wr_carousel_slider_left {left:-30px}
.wr_carousel_slider_right{right:-30px}
}
@media (max-width: 575px){
.wr_carousel_slider_left {left:10px}
.wr_carousel_slider_right{right:10px}
}


/* ---------- WR SHORTS CODE CSS ---------- */
.shorts-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.short-card {
  width: 250px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* NEW CSS */
.ow-eu-sh-heading{
  font-size:clamp(3.2rem,7vw,5.6rem);font-weight:800;color:var(--base-dark);letter-spacing:-2.5px;line-height:1.0;margin-bottom:24px;max-width:700px;
}
.ow-eu-sh-heading span{
  color:var(--base-skin);
}
.ow-eu-sh-text{
  font-size: 1.05rem;
  color: #4d6278;
  line-height: 1.75;
  max-width: 520px;
}
.ow-eu-sh-stories {
  background: #0D3B5E;
  padding: 0 56px 80px;
}

.ow-eu-sh-heading-bar { width: 36px; height: 4px; background: #E8193C; border-radius: 2px; margin-bottom: 16px; }

.ow-eu-sh-stories h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.5px; line-height: 1.15;
  margin-bottom: 14px;
}
.ow-eu-sh-stories-sub {
  font-size: 0.92rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 680px; margin-bottom: 40px;
}

/* Carousel */
.ow-eu-sh-carousel-outer { overflow: hidden; }
.ow-eu-sh-carousel-track {
  display: flex; gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Portrait card — 9:16 like TikTok/Reels */
.ow-eu-sh-story-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 200px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer;
  background: #071525;
}
.ow-eu-sh-story-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s;
}
.ow-eu-sh-story-card:hover img { transform: scale(1.05); }

/* Overlay */
.ow-eu-sh-story-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 45%, transparent 100%);
  pointer-events: none;
}

/* Play button */
.ow-eu-sh-sc-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s;
}
.ow-eu-sh-sc-play svg { width: 20px; height: 20px; fill: #111; margin-left: 3px; }
.ow-eu-sh-story-card:hover .ow-eu-sh-sc-play { transform: translate(-50%,-50%) scale(1.12); }

/* Flag top right */
.ow-eu-sh-sc-flag {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-size: 1.6rem; line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Caption */
.ow-eu-sh-sc-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3; padding: 14px 14px 18px;
}
.ow-eu-sh-sc-tag {
  display: inline-block;
  background: #E8193C; color: #fff;
  font-size: 0.58rem; font-weight: 700;
  padding: 3px 9px; border-radius: 4px;
  margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.ow-eu-sh-sc-name { font-size: 0.82rem; font-weight: 700; color: #fff; line-height: 1.3; }
.ow-eu-sh-sc-loc { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* Arrows */
.ow-eu-sh-nav-row {
  display: flex; justify-content: flex-end; gap: 10px; margin-top: 28px;
}
.ow-eu-sh-nav-arr {
  width: 44px; height: 44px; /*border-radius: 50%;*/
  border: 1.5px solid rgba(0, 58, 102, 0.85);
  background: transparent; color: rgb(0, 58, 102);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: all 0.2s;
}
.ow-eu-sh-nav-arr:hover { background: rgb(224, 36, 84); border-color: rgb(224, 36, 84); color: #fff; }
.ow-eu-sh-nav-arr:disabled { opacity: 1; cursor: default; pointer-events: none; }

/* Modal */
.ow-eu-sh-modal-bg {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 20px;
}
.ow-eu-sh-modal-bg.open { opacity: 1; pointer-events: all; }

/* Wrap: stacks video + title vertically, centred */
.ow-eu-sh-modal-wrap {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 380px;
}
.ow-eu-sh-modal-inner {
  position: relative; width: 100%;
  aspect-ratio: 9/16; border-radius: 16px; overflow: hidden;
  background: #000;
  transform: scale(0.9); transition: transform 0.3s;
}
.ow-eu-sh-modal-bg.open .ow-eu-sh-modal-inner { transform: scale(1); }
.ow-eu-sh-modal-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.ow-eu-sh-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.65); border: none; color: #fff;
  font-size: 1.1rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ow-eu-sh-modal-close:hover { background: #111; }

/* Title below the video */
.ow-eu-sh-modal-title-text {
  color: #fff; font-size: 0.92rem; font-weight: 600;
  text-align: center; margin: 14px 0 0;
  line-height: 1.45; max-width: 340px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .ow-eu-sh-stories { padding: 48px 24px 60px; }
  .ow-eu-sh-story-card { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 500px) {
  .ow-eu-sh-story-card { flex: 0 0 72%; }
}