/* Video showcase — reference index.html */

#video.uauu-video-section {
  --vid-bg-elevated: #1a1e17;
  --vid-gold: #c9a962;
  --vid-gold-light: #e0c98a;
  --vid-bg-deep: #0a0c09;
  --vid-sand: #e8e2d6;
  --vid-text: #f5f3ef;
  --vid-text-muted: rgba(245, 243, 239, 0.65);
  --vid-border: rgba(255, 255, 255, 0.08);
  --vid-container: 1200px;
  --vid-font-display: "Cormorant Garamond", Georgia, serif;
  background: var(--vid-bg-elevated) !important;
  color: var(--vid-text);
  padding: 0 !important;
}

#video.uauu-video-section > .ct-section-inner-wrap {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 6rem 0 !important;
  align-items: stretch !important;
  gap: 0 !important;
}

#video.uauu-video-section #code_block-2451-18 {
  width: 100%;
}

#video.uauu-video-section .container {
  width: min(100% - 2.5rem, var(--vid-container));
  margin-inline: auto;
}

#video.uauu-video-section .section-head {
  margin-bottom: 3rem;
}

#video.uauu-video-section .section-head--center {
  text-align: center;
}

#video.uauu-video-section .section-head--center .section-lead {
  margin-inline: auto;
}

#video.uauu-video-section .eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vid-gold);
  font-family: "DM Sans", system-ui, sans-serif;
}

#video.uauu-video-section .section-title {
  margin: 0 0 1rem;
  font-family: var(--vid-font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--vid-text) !important;
}

#video.uauu-video-section .section-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--vid-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  font-family: "DM Sans", system-ui, sans-serif;
}

#video.uauu-video-section .video-section {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  border: 1px solid var(--vid-border);
}

#video.uauu-video-section .video-section__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#video.uauu-video-section .video-section__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(10, 12, 9, 0.45);
  text-align: center;
  padding: 2rem;
  text-decoration: none;
  color: var(--vid-text);
  transition: background 0.25s ease;
}

#video.uauu-video-section .video-section__overlay:hover {
  background: rgba(10, 12, 9, 0.55);
  color: var(--vid-text);
}

#video.uauu-video-section .video-section__play {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.9);
  color: var(--vid-bg-deep);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

#video.uauu-video-section .video-section__overlay:hover .video-section__play {
  transform: scale(1.08);
  background: var(--vid-gold-light);
}

#video.uauu-video-section .video-section__label {
  margin: 0;
  font-family: var(--vid-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--vid-text);
}

#video.uauu-video-section .video-section__sub {
  margin: 0;
  max-width: 28rem;
  color: var(--vid-sand);
  font-size: 0.95rem;
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.55;
}

@media (max-width: 900px) {
  #video.uauu-video-section .video-section {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  #video.uauu-video-section > .ct-section-inner-wrap {
    padding: 4rem 0 !important;
  }

  #video.uauu-video-section .video-section__play {
    width: 64px;
    height: 64px;
    font-size: 1.25rem;
  }
}
