/* ------------------------------------------------------------------
   Hlavička podstránek — zkrácená varianta hero sekce
   ------------------------------------------------------------------ */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(circle at 78% 30%, rgba(var(--cyan-rgb),.12), transparent 30%),
              linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, var(--navy-tint));
}
.page-hero::after {
  position: absolute; right: -18vw; bottom: -34vw; z-index: -1; content: "";
  width: 62vw; height: 62vw; border: 1px solid rgba(var(--cyan-rgb),.15); border-radius: 50%;
}
.page-hero-content { padding: clamp(64px,7vw,104px) 0 clamp(72px,8vw,110px); }
.page-hero-content h1 {
  max-width: 940px; margin: 0; font-size: clamp(46px,5.4vw,86px); font-weight: 800;
  letter-spacing: -.055em; line-height: .96;
}
.page-hero-lead { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.68); font-size: clamp(17px,1.3vw,21px); line-height: 1.6; }
.page-hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px,2.2vw,28px); margin-top: 42px; color: rgba(255,255,255,.72); font-size: 15px; font-weight: 700; }
.page-hero-meta strong { color: var(--cyan); font-size: 19px; }
.page-hero .hero-actions { margin-top: 40px; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 34px; color: rgba(255,255,255,.5); font-size: 13px; font-weight: 700; letter-spacing: .04em; }
.breadcrumb a { color: rgba(255,255,255,.78); transition: color .18s ease; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--cyan); }
.breadcrumb span[aria-hidden] { color: rgba(var(--cyan-rgb),.5); }

/* ------------------------------------------------------------------
   Výpis dílů
   ------------------------------------------------------------------ */
.podcast-list { padding: clamp(76px,8vw,118px) 0 clamp(80px,8vw,120px); }
.podcast-list--related { padding-top: 0; }
.podcast-list-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; }

.podcast-item {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, border-color .22s ease;
}
.podcast-item:hover, .podcast-item:focus-visible {
  border-color: rgba(var(--cyan-rgb),.5); box-shadow: 0 24px 70px rgba(var(--navy-rgb),.14); transform: translateY(-6px);
}
.podcast-item-thumb { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--navy); }
.podcast-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.podcast-item:hover .podcast-item-thumb img { transform: scale(1.045); }
.podcast-item-play {
  position: absolute; top: 50%; left: 50%; display: grid; width: 62px; height: 62px;
  place-items: center; border-radius: 50%; background: rgba(var(--cyan-rgb),.94); color: var(--navy);
  transform: translate(-50%,-50%); transition: transform .2s ease, background .2s ease;
}
.podcast-item:hover .podcast-item-play { background: var(--cyan); transform: translate(-50%,-50%) scale(1.08); }
.podcast-item-play .icon { width: 26px; height: 26px; }
.podcast-item-duration {
  position: absolute; right: 14px; bottom: 14px; padding: 6px 11px; border-radius: 7px;
  background: rgba(var(--navy-deep-rgb),.86); color: var(--white); font-size: 12px; font-weight: 800; letter-spacing: .04em;
}

.podcast-item-body { display: flex; flex: 1; flex-direction: column; padding: 28px 28px 30px; color: var(--ink); }
.podcast-item-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.podcast-item-number { color: var(--cyan-deep); }
.podcast-item-kicker { margin: 20px 0 0; font-size: 13px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.podcast-item-body h3 { margin: 10px 0 0; font-size: clamp(24px,1.75vw,30px); font-weight: 800; letter-spacing: -.035em; line-height: 1.08; }
.podcast-item-perex { margin: 16px 0 0; color: var(--muted); font-size: 15px; line-height: 1.62; }
.podcast-item-more { margin-top: auto; padding-top: 24px; color: var(--ink); font-size: 14px; font-weight: 900; }
.podcast-item:hover .podcast-item-more { color: var(--cyan-deep); }

/* ------------------------------------------------------------------
   Prázdný stav
   ------------------------------------------------------------------ */
.episodes-empty {
  display: grid; justify-items: start; padding: clamp(44px,5vw,70px);
  border: 1px dashed rgba(var(--navy-rgb),.24); border-radius: var(--radius); background: var(--white); color: var(--ink);
}
.episodes-empty h3 { margin: 0; font-size: clamp(30px,3vw,46px); font-weight: 800; letter-spacing: -.04em; }
.episodes-empty p:not(.eyebrow) { max-width: 560px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.episodes-empty .button-dark { margin-top: 30px; }

@media (max-width: 1180px) {
  .podcast-list-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .page-hero-content { padding: 54px 0 66px; }
  .page-hero-content h1 { font-size: clamp(38px,11vw,52px); }
  .page-hero-lead { margin-top: 24px; font-size: 17px; }
  .breadcrumb { margin-bottom: 26px; }
  .podcast-list { padding: 66px 0 72px; }
  .podcast-list-grid { grid-template-columns: 1fr; gap: 20px; }
  .podcast-item-body { padding: 24px 22px 26px; }
  .episodes-empty { justify-items: stretch; }
}

/* Dlaždice dorovnávající poslední řádek mřížky */
.podcast-item--promo {
  background: radial-gradient(circle at 88% 6%, rgba(var(--cyan-rgb),.32), transparent 48%), var(--navy);
  border-color: transparent;
}
.podcast-item--promo .podcast-item-body { position: relative; justify-content: center; min-height: 340px; color: var(--white); }
.podcast-item--promo .podcast-item-meta { color: rgba(255,255,255,.55); }
.podcast-item--promo .podcast-item-number,
.podcast-item--promo .podcast-item-kicker { color: var(--cyan); }
.podcast-item--promo .podcast-item-perex { color: rgba(255,255,255,.66); }
.podcast-item--promo .podcast-item-more { color: var(--cyan); }
.podcast-item--promo:hover .podcast-item-more { color: var(--white); }
.podcast-item-watermark { position: absolute; top: -6px; right: -14px; opacity: .1; }
.podcast-item-watermark .icon { width: 132px; height: 132px; }
