.liveVideos {
  padding: 5rem 0;
  background: #fff;
}
.liveVideos .wrapper {
  display: flex;
  flex-flow: column;
  gap: 1rem;
}
.liveVideos-top {
  color: var(--base-dark);
  margin: 0 0 1.5rem;
  max-width: 1047px;
}
.liveVideos-top-text {
  opacity: 0.8;
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.liveVideos-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.liveVideos-stats-item {
  padding: 0.75rem 1.5rem;
  background: var(--base-dark);
  display: flex;
  gap: 0.5rem;
  flex-flow: column;
  border-radius: 12px;
  color: var(--text-light);
}
.liveVideos-stats-line {
  width: 100%;
  height: 1px;
  background: var(--accent);
}
.liveVideos-stats-number {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.liveVideos-stats-number:after {
  content: "%";
}
.liveVideos-stats-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.liveVideos-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.liveVideos-cards-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 327/173;
  color: var(--text-light);
  font-size: 0.75rem;
  line-height: 1rem;
}
.liveVideos-cards-banner {
  background: #9d1d1f;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
}
.liveVideos-cards-tag {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  position: absolute;
  bottom: 8px;
  left: 8px;
}
.liveVideos-cards-embed {
  width: 100%;
  height: 100%;
}
.liveVideos-cards-embed iframe,
.liveVideos-cards-embed object,
.liveVideos-cards-embed embed {
  width: 100%;
  height: 100%;
}
.liveVideos-cards-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (min-width: 768px) {
  .liveVideos-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .liveVideos-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .liveVideos-cards-item {
    aspect-ratio: 416/214;
  }
  .liveVideos-cards-item:first-of-type {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 856/452;
  }
}
@media all and (min-width: 1024px) {
  .liveVideos {
    padding: 6rem 0;
  }
  .liveVideos .wrapper {
    gap: 2.5rem;
  }
  .liveVideos-top {
    margin: 0 0 0.5rem;
  }
  .liveVideos-top-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .liveVideos-stats {
    gap: 1.5rem;
  }
  .liveVideos-stats-item {
    gap: 0.75rem;
  }
  .liveVideos-stats-number {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .liveVideos-stats-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .liveVideos-cards {
    gap: 1.5rem;
  }
  .liveVideos-cards-banner {
    top: 16px;
    left: 16px;
  }
  .liveVideos-cards-tag {
    bottom: 16px;
    left: 16px;
    padding: 0.75rem 1rem;
  }
}/*# sourceMappingURL=liveVideos.css.map */