/* ===== Media Lightbox (image + video) ===== */
body.lb-open { overflow: hidden; }

.lb {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.72);
}

.lb[hidden] { display: none !important; }

.lb__panel{
  position: relative;
  width: min(980px, 96vw);
  max-height: 88vh;
  background: rgba(10,10,10,.92);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}

.lb__close{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 22px;
  line-height: 42px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.lb__close:hover{ background: rgba(255,255,255,.22); }

.lb__stage{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 14px;
}

.lb__stage img,
.lb__stage video{
  width: 100%;
  height: auto;
  max-height: 82vh;
  border-radius: 14px;
  object-fit: contain;
  background: #000;
}

/* Video controls daha rahat dokunulsun */
.lb__stage video{
  max-width: 100%;
}

/* ===== Testimonial kart içi medya (küçük önizleme) ===== */
.tst-media{
  display: block;
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

/* Önizleme oranı: video için 16/9, görsel için de iyi durur */
.tst-media{ aspect-ratio: 16 / 9; }

.tst-thumb{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tst-play{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 54px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 8px 24px rgba(0,0,0,.55);
  pointer-events: none;
}

.tst-media:hover .tst-play{ transform: scale(1.03); }
