/* ==========================================================================
   MARKIZE — videos.css
   Page dédiée Vidéos : clip vedette + grilles thématiques.
   ========================================================================== */

/* --- Featured clip --- */
.featured-clip {
  padding: 0 var(--gutter) 80px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 720px) { .featured-clip { padding: 0 var(--gutter-mobile) 60px; } }

.featured-clip-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.featured-clip-frame:hover { border-color: var(--gold); }
.featured-clip-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(1);
  transition: transform 1.2s var(--ease-out), filter 0.5s ease;
}
.featured-clip-frame:hover img {
  transform: scale(1.04);
  filter: brightness(0.55) saturate(1.1);
}
.featured-clip-frame::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(10, 6, 8, 0.85) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(139, 0, 0, 0.3), transparent 60%);
  z-index: 2;
}
.featured-clip-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 56px;
  z-index: 3;
}
@media (max-width: 720px) { .featured-clip-info { padding: 24px; } }
.featured-clip-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.featured-clip-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}
.featured-clip-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  max-width: 600px;
}
.featured-clip-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(4px);
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.featured-clip-frame:hover .featured-clip-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(212, 175, 55, 0.3);
}
.featured-clip-play::before {
  content: "▶";
  font-size: 28px;
  color: var(--gold);
  margin-left: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 720px) {
  .featured-clip-play { width: 64px; height: 64px; }
  .featured-clip-play::before { font-size: 22px; }
}

/* --- Sections grilles vidéos --- */
.videos-section {
  padding: 80px var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .videos-section { padding: 60px var(--gutter-mobile); } }

.videos-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.videos-section-header h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: 0.04em;
  margin: 8px 0 0;
}
.videos-section-header .count {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Adapte la grille (réutilise .singles-grid mais densifie pour la section "tracks") */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.videos-grid.dense {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Track card (audio-only avec pochette album) — variante de single-card */
.track-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.track-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: var(--bg-3);
}
.track-thumb {
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.track-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.4s ease, transform 0.8s var(--ease-out);
}
.track-card:hover .track-thumb img {
  filter: brightness(0.7);
  transform: scale(1.05);
}
.track-thumb::after {
  content: "▶";
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gold);
  opacity: 0.85;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.track-info {
  padding: 18px 22px 22px;
}
.track-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.track-name .cyrillic {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 2px;
}
.track-name .translit {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.track-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
.track-lang-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--line-strong);
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Vlog card (plus compact) */
.vlog-card .single-name {
  font-size: 17px;
  line-height: 1.35;
}

/* CTA channels */
.channels-cta {
  padding: 80px var(--gutter);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .channels-cta { padding: 60px var(--gutter-mobile); } }
.channels-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.channels-list a {
  padding: 16px 28px;
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.channels-list a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
