.s2-videos-page .s2-video-section {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--s2-header-h) + 20px);
}

.s2-videos-page .s2-video-section:last-child {
  margin-bottom: 0;
}

.s2-videos-page .s2-video-section h2 {
  margin-top: 0;
}

.s2-videos-page .s2-video-section:not(:first-child) h2 {
  margin-top: 48px;
}

.s2-video-section-intro {
  margin: -4px 0 28px;
  font-size: 1.02rem;
  color: var(--s2-text-2);
}

.s2-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.s2-video-card {
  background: var(--s2-surface);
  border: 1px solid var(--s2-border);
  border-radius: var(--s2-radius-lg);
  overflow: hidden;
  box-shadow: var(--s2-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.s2-video-card:hover {
  box-shadow: var(--s2-shadow-lg);
  transform: translateY(-2px);
}

.s2-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.s2-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.s2-video-body {
  padding: 20px 22px 22px;
}

.s2-video-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 8px;
  color: var(--s2-text);
}

.s2-video-tag {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--s2-orange);
}

.s2-video-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--s2-text-2);
}

.s2-videos-main {
  max-width: none;
}

@media (max-width: 991px) {
  .s2-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .s2-video-body {
    padding: 16px 18px 18px;
  }
}
