/* Подкасты — 522:8838: отступы 100/110, шаг 60; две колонки 837/838 через 25,
   плита проигрывателя 1700×936, снизу полоса прогресса и лента из шести обложек. */
.pod {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.125vw, 60px);
  padding: clamp(56px, 5.2083vw, 100px) var(--gutter);
  background: var(--paper);
}
.pod__title {
  font-size: clamp(30px, 2.7083vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--ink);
}

.pod__text {
  display: grid;
  grid-template-columns: 837fr 838fr;
  gap: clamp(16px, 1.3021vw, 25px);
  font-size: var(--t-lead);
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--ink);
}

.pod__stage {
  position: relative;
  height: clamp(220px, 48.75vw, 936px);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
}
/* Обложка выпуска: плита 1700×936, кадр 16:9 — режем по cover, важное в центре. */
.pod__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pod__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: clamp(56px, 5.2083vw, 100px);
  height: clamp(56px, 5.2083vw, 100px);
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pod__play img { width: 100%; height: 100%; }
.pod__play:hover { transform: translate(-50%, -50%) scale(1.06); }

.pod__nav { display: flex; flex-direction: column; gap: 20px; }
.pod__bar {
  position: relative;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(38, 43, 49, 0.3);
}
.pod__fill {
  display: block;
  width: 15.4118%;              /* 262 из 1700 */
  height: 100%;
  border-radius: 10px;
  background: var(--gold-grad);
}

.pod__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.3021vw, 25px);
}
.pod__thumb {
  height: clamp(64px, 6.6146vw, 127px);
  border-radius: 10px;
  overflow: hidden;
  background: var(--ink);
}
.pod__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1023px) {
  .pod__text { grid-template-columns: 1fr; row-gap: 20px; }
  .pod__thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  /* На 1920 и 1440 клэмп высоты и так даёт пропорцию плитки 262:127. Ниже 1024
     колонок меньше, плитка становится широкой и плоской (220×64), и cover режет
     обложку по живому тексту. Ведём высоту от пропорции кадра. */
  .pod__thumb { height: auto; aspect-ratio: 262 / 127; }
}
@media (max-width: 599px) {
  .pod__thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
/* Ширина плиты — 88.54vw, поэтому 48.75vw высоты держат пропорцию 1700:936 сами
   по себе; но ниже 451px клэмп упирается в минимум 220px, плита становится площе
   кадра, и object-fit: cover срезает по бокам логотип и заголовок обложки.
   На узких экранах ведём высоту от пропорции — кадр виден целиком. */
@media (max-width: 450px) {
  .pod__stage { height: auto; aspect-ratio: 1700 / 936; }
}
