.videos-live-info-section {
  background: #fff;
  padding: 4rem 2rem;
  border-bottom: 0.125rem solid #e0e0e0;
}

.videos-live-info-container {
  max-width: 87.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.videos-live-info-content {
  text-align: left;
}

.videos-live-info-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-extra-bold);
  color: var(--primary-1);
  margin-bottom: 1rem;
}

.videos-facebook-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-2);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-h6);
  font-weight: var(--fw-bold);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.videos-facebook-notice i {
  font-size: 1.25rem;
}

.videos-live-info-content p {
  font-family: var(--font-body);
  font-size: var(--fs-h5);
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.videos-live-info-video {
  background: #000;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.15);
  aspect-ratio: 16 / 9;
  position: relative;
}

.videos-promo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.videos-live-indicator {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.75);
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  z-index: 10;
}

.videos-live-dot {
  width: 0.625rem;
  height: 0.625rem;
  background: #ff0000;
  border-radius: 50%;
  animation: videos-pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0.625rem rgba(255, 0, 0, 0.8);
}

@keyframes videos-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

.videos-live-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03125rem;
}

.videos-watch-live-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--primary-1);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.9375rem rgba(48, 92, 222, 0.3);
}

.videos-watch-live-btn:hover {
  background: var(--primary-3);
  transform: translateY(-0.125rem);
}

.videos-watch-live-btn i {
  font-size: 1.5rem;
}

@media (max-width: 1024px) {
  .videos-live-info-section {
    padding: 3rem 1.5rem;
  }

  .videos-live-info-container {
    gap: 2rem;
  }

  .videos-live-info-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .videos-live-info-content p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
  }

  .videos-facebook-notice {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .videos-watch-live-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .videos-live-info-section {
    padding: 2.5rem 1.25rem;
  }

  .videos-live-info-container {
    gap: 1.5rem;
  }

  .videos-live-info-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .videos-live-info-content p {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .videos-facebook-notice {
    font-size: 0.8rem;
    padding: 0.5rem 0.875rem;
    margin-bottom: 1rem;
  }

  .videos-watch-live-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
  }

  .videos-watch-live-btn i {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .videos-live-info-section {
    padding: 3rem 1.5rem;
  }

  .videos-live-info-content h2 {
    font-size: var(--fs-h3);
  }

  .videos-live-info-content p {
    font-size: var(--fs-body);
  }
}

@media (max-width: 480px) {
  .videos-live-info-section {
    padding: 2rem 1rem;
  }

  .videos-live-info-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .videos-live-info-content {
    text-align: center;
  }

  .videos-live-indicator {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.375rem 0.625rem;
  }

  .videos-live-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .videos-live-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  .videos-live-info-section {
    padding: 1.75rem 0.875rem;
  }

  .videos-live-info-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .videos-live-info-content {
    text-align: center;
  }

  .videos-facebook-notice {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .videos-watch-live-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .videos-live-info-section {
    padding: 1.5rem 0.75rem;
  }

  .videos-live-info-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .videos-live-info-content {
    text-align: center;
  }

  .videos-live-info-content h2 {
    font-size: 1.5rem;
  }

  .videos-live-info-content p {
    font-size: 0.9rem;
  }

  .videos-facebook-notice {
    font-size: 0.7rem;
    padding: 0.4rem 0.7rem;
  }

  .videos-watch-live-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}
