/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.webinars .webinar-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 4rem;
}
.webinars .webinar-item .video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}
.webinars .webinar-item iframe,
.webinars .webinar-item object,
.webinars .webinar-item embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.webinars .webinar-item .name {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 2.4rem 0 0;
}

@media (max-width: 768px) {
  .webinars .webinar-list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .webinars .webinar-item .name {
    font-size: 1.8rem;
  }
}