/* Films & interventions — styles spécifiques (complète sat-global.css) */

main.page > .section,
main.page > .page-intro,
main.page > .footer {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.list.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 42px 34px }
.pub { display: flex; flex-direction: column; align-items: flex-start }
.pub h3 { font-size: 28px; line-height: 1.04; font-weight: 400; margin: 0 }
.pub p { font-size: 15px; line-height: 1.5; color: #4a4945; margin: 10px 0 0; max-width: 32em }
.pub.empty { display: none }

.cover.video-card {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  background: #171717;
  color: #fff;
  display: block;
}
.cover.video-card img,
.cover.video-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .35s ease, transform .45s ease;
}
.cover.video-card img { z-index: 1 }
.cover.video-card video { z-index: 2; opacity: 0; background: #111 }
.cover.video-card.is-previewing video { opacity: 1 }
.cover.video-card:hover img { transform: scale(1.018) }
.cover.video-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(90deg, rgba(0,0,0,.40), rgba(0,0,0,.04) 45%, rgba(0,0,0,.18));
  pointer-events: none;
}
.cover.video-card::after {
  content: 'PLAY';
  position: absolute; right: 16px; bottom: 14px; z-index: 4;
  border: 1px solid rgba(255,255,255,.82);
  color: #fff;
  padding: 8px 10px;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  opacity: .95;
  transition: all .25s ease;
}
.cover.video-card:hover::after { background: rgba(255,255,255,.92); color: #111 }

.video-brand {
  position: absolute; left: 12px; top: 12px; bottom: 12px; z-index: 4;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 14px; letter-spacing: .08em;
  color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.35);
  pointer-events: none;
}
.video-card-title {
  position: absolute; left: 32px; top: 24px; right: 72px; z-index: 4;
  font-size: 30px; line-height: 1.02; font-weight: 600;
  color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.38);
  pointer-events: none;
}
.video-card-kicker {
  position: absolute; right: 14px; top: 14px; z-index: 4;
  font-size: 11px; line-height: 1.2; text-align: right;
  color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.45);
  pointer-events: none;
}

@media (max-width:1100px) { .list.grid3 { grid-template-columns: repeat(2, minmax(0,1fr)) } }
@media (max-width:900px) {
  main.page > .section, main.page > .page-intro, main.page > .footer { padding-left: 22px; padding-right: 22px }
  .list.grid3 { grid-template-columns: 1fr }
  .video-card-title { font-size: 24px }
  .video-brand { font-size: 12px }
}
