/**
 * Essentials Creative — Video gallery (editorial layout)
 * Clean large 16:9 players in a two-up rhythm, no card chrome, title +
 * category beneath. Consistent with editorial.css / the rest of the site.
 * Markup unchanged: .video-gallery-grid > .video-card-modern >
 *   .video-iframe-container (iframe) + .video-info-modern (+ optional .video-badge)
 */

.video-gallery-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
}

/* Two-up rhythm; featured spans full width */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.25rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.video-card-modern {
  position: relative;
  background: transparent;
}

/* 16:9 player frame */
.video-iframe-container {
  position: relative;
  padding-top: 56.25%;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}
.video-iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Caption beneath the video — no card, no shadow */
.video-info-modern {
  padding: 1rem 0 0;
  background: transparent;
}
.video-title-modern {
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 0.35rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.video-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.video-category {
  font-size: 0.74rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Featured video — full width, larger title */
.video-card-featured {
  grid-column: 1 / -1;
}
.video-card-featured .video-title-modern {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

/* Small category chip over the player */
.video-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 3;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Section headers */
.video-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.video-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 0.75rem;
}
.video-section-subtitle {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* "Women and their Work" — clean separation instead of a grey band */
.women-their-work-section {
  background: transparent;
  padding: clamp(3rem, 7vw, 6rem) 0 0;
  margin-top: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid #ececec;
}

/* Accessibility */
.video-iframe-container:focus-within {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

/* Mobile: single column */
@media (max-width: 760px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 3rem);
  }
  .video-card-featured { grid-column: auto; }
  .video-title-modern { font-size: 1.05rem; }
}
