:root { color-scheme: light; }
html { min-height: 100%; }
body.video-library-page {
  margin: 0;
  color: var(--text-primary-light);
  background: linear-gradient(145deg, #faf8f4 0%, var(--bg-light) 55%, #f7f2e7 100%);
  font-family: 'Inter', system-ui, sans-serif;
}
.video-library-main {
  width: 100%;
  min-height: 100vh;
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}
.video-library { width: 100%; margin: 0 auto; }
.library-heading {
  width: 100%;
  margin: 0 auto;
  padding: clamp(7.5rem, 14vw, 10rem) 1.5rem clamp(4rem, 8vw, 6rem);
  text-align: center;
  background: transparent;
}
.library-kicker { margin: 0 0 .75rem; color: var(--accent-rose-gold); font-size: .85rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.library-heading h1 { margin: 0 0 1rem; font-family: 'Cormorant Garamond', Georgia, serif; color: var(--accent-sage-green-dark-bright); font-size: clamp(3.25rem, 8vw, 5.25rem); font-weight: 600; line-height: 1.05; }
.library-heading > p:last-child { max-width: 38rem; margin: 0 auto; color: #5d6d7e; font-size: 1.05rem; line-height: 1.8; }
.video-group { width: min(100% - 3rem, 75rem); margin: clamp(3rem, 7vw, 5.5rem) auto 0; }
.group-heading { display: block; margin-bottom: 1rem; }
.group-heading h2 { margin: 0; font-family: 'Cormorant Garamond', Georgia, serif; color: var(--accent-sage-green); font-size: clamp(2rem, 4vw, 3.25rem); }
.group-heading p { max-width: 28rem; margin: .25rem 0 0; color: #5d6d7e; line-height: 1.5; text-align: left; }
.video-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.video-card { display: flex; flex-direction: column; overflow: hidden; background: #fffdf8; border-radius: 1rem; box-shadow: 0 1rem 2.5rem rgba(48, 54, 40, .14); }
.video-card-link { display: block; color: inherit; }
.video-card-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #111; }
.video-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.video-card-link:hover .video-card-media img { transform: scale(1.035); filter: brightness(.82); }
.video-play { position: absolute; right: .7rem; bottom: .65rem; display: grid; width: 1.75rem; height: 1.75rem; place-items: center; color: #fff; background: transparent; border: 0; border-radius: 0; filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .45)); transition: transform .25s ease, color .25s ease; }
.video-play span { width: 0; height: 0; margin-left: .12rem; border-top: .45rem solid transparent; border-bottom: .45rem solid transparent; border-left: .7rem solid currentColor; }
.video-card-link:hover .video-play { color: var(--accent-golden-ochre); transform: scale(1.15); }
.video-card-media--coming-soon { display: grid; place-items: center; align-content: center; gap: .6rem; color: #fffaf1; background: radial-gradient(circle at 25% 20%, rgba(212, 165, 116, .4), transparent 38%), linear-gradient(135deg, #4a5d4e, #6b8b7c 55%, #b76e79); }
.coming-soon-mark { display: grid; width: clamp(2.5rem, 4vw, 3.75rem); height: clamp(2.5rem, 4vw, 3.75rem); place-items: center; color: #fff4da; font-size: 1.35rem; border: 1px solid rgba(255, 244, 218, .65); border-radius: 50%; }
.coming-soon-label { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.video-card-copy { flex: 1; padding: 1rem 1.15rem 1.25rem; background: #fffdf8; }
.video-card-episode { margin: 0 0 .2rem; color: var(--text-primary-light); font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.05rem, 1.5vw, 1.7rem); line-height: 1.15; }
.video-card-copy h3 { margin: 0; color: var(--text-primary-light); font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.05rem, 1.5vw, 1.7rem); line-height: 1.15; }
.video-card-copy p { margin: .35rem 0 0; color: #5d6d7e; font-size: .9rem; line-height: 1.5; }
.video-card-copy .video-card-episode { margin: 0 0 .2rem; color: var(--text-primary-light); font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.05rem, 1.5vw, 1.7rem); font-weight: 600; line-height: 1.15; letter-spacing: normal; text-transform: none; }
.video-card-copy .video-card-episode + h3 { font-size: clamp(1rem, 1.25vw, 1.4rem); font-style: italic; font-weight: 400; }
.library-empty { color: #5d6d7e; text-align: center; }
@media (max-width: 42rem) {
  .video-group { width: min(100% - 2rem, 75rem); }
  .group-heading { display: block; }
  .group-heading p { margin-top: .35rem; text-align: left; }
}
@media (max-width: 60rem) {
  .video-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 44rem) {
  .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 32rem) {
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
}
@media (max-width: 22rem) {
  .video-grid { grid-template-columns: 1fr; }
}
