.restoration-video-showcase {
  --rv-green: #10251d;
  --rv-accent: #18a999;
  max-width: 1180px;
  margin: 56px auto;
  padding: 0 20px;
}

.restoration-video-showcase__head {
  max-width: 760px;
  margin-bottom: 24px;
}

.restoration-video-showcase__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--rv-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.restoration-video-showcase h2 {
  margin: 0 0 10px;
  color: #14221e;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.restoration-video-showcase__head p {
  margin: 0;
  color: #52615c;
  font-size: 17px;
  line-height: 1.6;
}

.restoration-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.restoration-video-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 29, .14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 37, 29, .09);
}

.restoration-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #10251d;
  object-fit: cover;
}

.restoration-video-card figcaption {
  padding: 12px 14px 15px;
  color: #263a33;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.restoration-video-showcase__action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.restoration-video-showcase__action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid #16bdca;
  background: #16bdca;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(22, 189, 202, .2);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.restoration-video-showcase__action a:hover {
  border-color: #0fa7b6;
  background: #0fa7b6;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .restoration-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .restoration-video-showcase { margin: 38px auto; padding: 0 14px; }
  .restoration-video-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .restoration-video-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
}
