/* acf-blocks/cbf-video.php */

.cbf-video {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--cbf-theme-green-light);
}

@media (min-width: 1024px) {
  .cbf-video {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.cbf-video__header {
  margin-bottom: 3rem;
}

.cbf-video__title {
  font-size: 1.5rem;
  text-align: center;
  color: var(--cbf-theme-green);
}

@media (min-width: 1024px) {
  .cbf-video__title {
    font-size: 3rem;
  }
}

.cbf-video__text,
.cbf-video__text p {
  font-size: 1rem;
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .cbf-video__text,
  .cbf-video__text p {
    font-size: 1.5rem;
  }
}

.cbf-video__elem {
  display: flex;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
}

.cbf-video__elem .iframe-wrapper {
  width: 100%;
}

.cbf-video__elem .iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
