.videos-reveal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 40px 24px;
}
@media (min-width: 768px) {
  .videos-reveal-inner {
    padding: 32px 64px;
  }
}
.videos-reveal-title {
  white-space: nowrap;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, #65dcd5 50%, #e5e7eb 50%);
  background-size: 200% 100%;
  background-position: 0% 0;
  transition: background-position 1s cubic-bezier(0.45, 0, 0.55, 1) !important;
  font-size: 28px;
  font-size: clamp(max(16px, 16.8px), calc(28 * 0.0521vw), 28px);
}
@media (max-width: 768px) {
  .videos-reveal-title {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .videos-reveal-title {
    font-size: 40px;
    font-size: clamp(max(16px, 24px), calc(40 * 0.0521vw), 40px);
  }
}
[data-videos-reveal].is-revealed .videos-reveal-title {
  background-position: 100% 0;
}
.videos-reveal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 88rem;
}
@media (min-width: 768px) {
  .videos-reveal-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }
}
.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: clip-path 1s ease !important;
}
.clip-reveal-right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.clip-reveal-left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
[data-videos-reveal].is-revealed .clip-reveal-right,
[data-videos-reveal].is-revealed .clip-reveal-left {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.video-card-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}
.video-card-btn:hover .video-card-tint {
  background: rgba(0, 0, 0, 0.35);
}
.video-card-btn:hover .video-card-play {
  transform: scale(1.1);
}
.video-card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card-thumb-placeholder {
  background: linear-gradient(135deg, #dfe7e6, #c9d6d4);
}
.video-card-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease !important;
}
.video-card-play-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease !important;
}
.video-card-play svg {
  transform: translateX(-2px);
}
@media (min-width: 768px) {
  .video-card-play {
    width: 64px;
    height: 64px;
  }
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card-note {
  position: absolute;
  inset-inline: 0;
  bottom: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-size: clamp(max(16px, 7.8px), calc(13 * 0.0521vw), 13px);
}
