body {
  margin: 0;
  min-height: 100vh;
  background: #050505;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.videos-page-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 80px;
}

.videos-page-header {
  max-width: 720px;
  margin-bottom: 55px;
}

.videos-page-header .section-label {
  margin: 0 0 14px;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #a7a7a7;
}

.videos-page-header h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.videos-page-header p:last-child {
  max-width: 560px;
  margin: 24px 0 0;
  color: #a7a7a7;
  font-size: 1rem;
  line-height: 1.7;
}

.public-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.public-video-card {
  overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.public-video-card video {
  display: block;
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  background: #000000;
  cursor: pointer;
}

.public-video-card h3 {
  margin: 0;
  padding: 20px 22px 23px;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.videos-empty-message {
  padding: 50px 0;
  color: #8d8d8d;
  text-align: center;
}

@media (max-width: 750px) {
  .videos-page-section {
    width: min(100% - 28px, 1200px);
    padding-top: 110px;
  }

  .public-videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .videos-page-header {
    margin-bottom: 38px;
  }
}