/* ============================================
   PIQUED JACKS - Video Section
   ============================================ */

.pj-section--video {
  background: var(--pj-black);
}

.pj-section--video .pj-bg {
  background-color: var(--pj-black);
}

.pj-section--video .pj-overlay {
  background: rgba(10, 9, 8, 0.3);
}

.pj-video__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

/* Wrapper 16:9 */
.pj-video__embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
  animation: pj-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.pj-video__embed-wrap iframe,
.pj-video__embed-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pj-video__embed-wrap video {
  object-fit: cover;
}

.pj-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pj-mid);
}

.pj-video__placeholder p {
  font-family: var(--pj-font-title);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pj-accent);
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .pj-video__content {
    width: 88% !important;
    max-width: 88% !important;
  }
}