/* Shared scroll-scale video block (home + about) */
.about-video-pin {
  position: relative;
  height: 150vh;
  background: #fff;
  margin-top: -8px;
  z-index: 2;
}

/* Hakkımızda: video turuncu bandın biraz üstüne binsin */
.about-split + .about-video-pin {
  margin-top: clamp(-72px, -8vw, -48px);
  background: transparent;
}

.about-split + .about-video-pin .about-video-pin__sticky {
  padding-top: clamp(8px, 1.5vw, 20px);
  background: transparent;
}

.home-blog + .about-video-pin {
  margin-top: 0;
  background: #fff;
}

.home-blog + .about-video-pin .about-video-pin__sticky {
  padding-top: clamp(16px, 2.5vw, 28px);
}

.about-video-pin__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px);
  box-sizing: border-box;
  overflow: visible;
}

.about-video {
  --av-scale: 0.8;
  position: relative;
  width: min(1440px, 92vw);
  transform: scale(var(--av-scale));
  transform-origin: center center;
  will-change: transform;
}

.about-video__card {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 9;
  background: #1a222c;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.about-video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}

.about-video__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: var(--about-video-btn, #16334d);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, filter 0.2s ease;
}

.about-video__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  filter: brightness(1.08);
}

.about-video__play--static {
  pointer-events: none;
}

.about-video__play svg {
  margin-left: 3px;
}

.about-video__player {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
}

.about-video__player iframe,
.about-video__player video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .about-video-pin {
    height: 130vh;
  }

  .about-video__play {
    width: 64px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-video {
    --av-scale: 1 !important;
  }
}
