.vernal-videos {
  background: var(--ocf-color-bg);
}

.vernal-videos__header {
  margin-bottom: 1.5rem;
}

.vernal-videos__header h2 {
  margin: 0;
}

.vernal-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.vernal-videos__item {
  min-width: 0;
}

.vernal-videos__embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.12);
}

.vernal-videos__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .vernal-videos__grid {
    grid-template-columns: 1fr;
  }
}
