.ocf-videos {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--ocf-color-bg);
}

.ocf-videos__header {
  max-width: 52rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.ocf-videos__intro {
  margin: 0.85rem auto 0;
  color: var(--ocf-color-body);
}

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

.ocf-videos__item {
  border: 1px solid var(--ocf-color-border-light);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
}

.ocf-videos__embed {
  position: relative;
  padding-top: 56.25%;
}

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

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