.videos-section{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Desktop: 2 Spalten */
  gap: calc(1 * var(--block-margin));
}

.video-block {
  margin-bottom: 0;
}

.video-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: calc(var(--block-margin)/2) 0;
}

.video-iframe-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}


.video-title{
    text-align: center;
    margin-top: 0;
}

/* Mobile */
@media (max-width: 1000px) {
  .videos-section {
    grid-template-columns: 1fr; /* 1 Spalte auf Handy */
  }
}