/* ── VIDEO ── */
.vid-player {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  aspect-ratio: 16/9;
  max-height: 500px;
  border-radius: 0;
  overflow: hidden;
}
.vid-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.vid-placeholder {
  width: 100%;
  height: 100%;
  background: #AAEDFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.vid-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}
.vid-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}
.vid-ph-text {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.08em;
  /* text-transform: uppercase; */
  color: #0a0a0a;
}

@media (max-width: 980px) {
  .vid-ph-text {
    font-size: 24px;
  }
  .vid-player {
    border-radius: 0;

  }
}
