.showcase-video-section {
  background:
    radial-gradient(circle at 20% 12%, rgba(212, 175, 55, 0.1), transparent 30%),
    linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.showcase-video-section .container {
  max-width: 1180px;
}

.showcase-video-header {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.showcase-video-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-video-header h2 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.05;
}

.showcase-video-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

.showcase-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 1.8rem);
}

.showcase-video-grid.single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.showcase-video-card {
  scroll-margin-top: 120px;
  overflow: hidden;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.showcase-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.showcase-video-copy {
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.showcase-video-copy h3 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.showcase-video-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.showcase-video-next {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
}

.showcase-video-next a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.4rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(212, 175, 55, 0.58);
  border-radius: 999px;
  color: #d4af37;
  background: rgba(0, 0, 0, 0.32);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.showcase-video-next i {
  font-size: 0.78rem;
  animation: showcaseCueNudge 1.6s ease-in-out infinite;
}

.showcase-video-next a:hover,
.showcase-video-next a:focus-visible {
  color: #ffe28b;
  border-color: rgba(255, 221, 104, 0.94);
  background: rgba(20, 16, 8, 0.72);
  transform: translateY(-1px);
}

@keyframes showcaseCueNudge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.22rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-video-next i {
    animation: none !important;
  }
}

@media (max-width: 780px) {
  .showcase-video-grid,
  .showcase-video-grid.single {
    grid-template-columns: 1fr;
  }

  .showcase-video-section {
    padding: 3.5rem 0;
  }

  .showcase-video-card {
    border-radius: 5px;
  }

  .showcase-video-next {
    margin-top: 1rem;
  }
}
