:root {
  --podcast-navy: #061a3b;
  --podcast-navy-2: #0b294f;
  --podcast-navy-3: #123963;
  --podcast-red: #e50922;
  --podcast-ink: #0b1629;
  --podcast-paper: #f6f7f9;
  --podcast-line: #dfe4eb;
  --podcast-muted: #647083;
}

.podcast-page {
  background:
    radial-gradient(circle at 84% 14%, rgba(15, 57, 105, .05), transparent 28rem),
    #fff;
  color: var(--podcast-ink);
}

.podcast-page .main-nav a.active {
  position: relative;
}

.podcast-page .main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 4px;
  background: var(--podcast-red);
}

.podcast-main {
  padding-top: 34px;
  padding-bottom: 70px;
}

.podcast-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 20px;
}

.page-kicker,
.section-kicker {
  margin: 0 0 5px;
  color: var(--podcast-red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.podcast-title-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.podcast-title-row h1 {
  margin: 0;
  font: 800 clamp(2.25rem, 5vw, 4.25rem)/.95 "Libre Franklin", Inter, sans-serif;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.podcast-title-row p {
  margin: 0;
  color: var(--podcast-muted);
  font-size: 1rem;
}

.outline-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid #b9c2cf;
  border-radius: 5px;
  color: var(--podcast-ink);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.outline-action:hover,
.outline-action:focus-visible {
  border-color: var(--podcast-red);
  color: var(--podcast-red);
}

.podcast-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  margin: 0 0 18px;
  padding: 0 0 10px;
  scrollbar-width: thin;
}

.podcast-tab {
  flex: 0 0 auto;
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  padding: 0 18px;
  color: var(--podcast-ink);
  font: 800 .76rem/1 Inter, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.podcast-tab:hover,
.podcast-tab:focus-visible {
  background: #f0f2f5;
}

.podcast-tab.active {
  background: var(--podcast-red);
  color: #fff;
  box-shadow: 0 6px 16px rgba(229, 9, 34, .18);
}

.podcast-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(300px, .95fr);
  gap: 8px;
}

.featured-podcast,
.latest-episodes {
  background:
    linear-gradient(135deg, rgba(18, 57, 99, .45), transparent 42%),
    var(--podcast-navy);
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(4, 17, 43, .13);
}

.featured-podcast {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
}

.podcast-cover {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(28, 116, 187, .55), transparent 33%),
    linear-gradient(155deg, #0a315c 0%, #06182f 64%, #020a16 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .32);
}

.large-cover {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  padding: 11% 9%;
  display: flex;
  flex-direction: column;
}

.cover-gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(128deg, transparent 0 47%, rgba(255,255,255,.04) 47.5% 49%, transparent 49.5%),
    linear-gradient(40deg, transparent 0 70%, rgba(229,9,34,.18) 71% 82%, transparent 83%);
}

.podcast-cover::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 76%;
  height: 76%;
  right: -44%;
  top: -28%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(255,255,255,.025),
    0 0 0 38px rgba(255,255,255,.018);
}

.cover-topline {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: .95;
}

.large-cover > strong {
  margin-top: 4px;
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
  line-height: 1;
}

.cover-red-label {
  align-self: flex-start;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--podcast-red), #d90a20 72%, transparent);
  padding: 5px 62px 5px 7px;
  font-size: clamp(.72rem, 1.3vw, 1rem);
  font-weight: 800;
}

.cover-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 66px;
  margin: auto 0 12px;
}

.cover-wave i {
  width: 3px;
  border-radius: 2px;
  background: #fff;
}

.cover-wave i:nth-child(1) { height: 16px; }
.cover-wave i:nth-child(2) { height: 30px; }
.cover-wave i:nth-child(3) { height: 44px; }
.cover-wave i:nth-child(4) { height: 24px; }
.cover-wave i:nth-child(5) { height: 54px; }
.cover-wave i:nth-child(6) { height: 34px; }
.cover-wave i:nth-child(7) { height: 60px; }
.cover-wave i:nth-child(8) { height: 28px; }
.cover-wave i:nth-child(9) { height: 47px; }
.cover-wave i:nth-child(10) { height: 32px; }
.cover-wave i:nth-child(11) { height: 18px; }

.cover-brand {
  align-self: center;
  border: 1px solid rgba(255,255,255,.5);
  padding: 3px 6px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.featured-copy {
  min-width: 0;
}

.featured-kicker {
  color: #ff263e;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.featured-copy h2 {
  max-width: 760px;
  margin: 12px 0 10px;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.featured-copy > p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: .96rem;
  line-height: 1.55;
}

.episode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
  color: rgba(255,255,255,.66);
  font-size: .78rem;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  margin: 27px 0 18px;
}

.round-control {
  display: inline-grid;
  place-items: center;
  position: relative;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.round-control.small {
  width: 38px;
  height: 38px;
  font-size: .9rem;
  opacity: .92;
}

.round-control.small:hover,
.round-control.small:focus-visible {
  background: rgba(255,255,255,.1);
}

.round-control.play-main {
  width: 66px;
  height: 66px;
  padding-left: 4px;
  background: var(--podcast-red);
  box-shadow: 0 10px 28px rgba(229,9,34,.35);
  font-size: 1.45rem;
}

.round-control.play-main:hover,
.round-control.play-main:focus-visible {
  transform: scale(1.04);
}

.skip-number {
  position: absolute;
  top: 9px;
  font-size: .52rem;
}

.progress-area {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .72rem;
}

.progress-area input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--podcast-red) 0 var(--progress, 0%),
    rgba(255,255,255,.25) var(--progress, 0%) 100%
  );
  cursor: pointer;
}

.progress-area input[type="range"]::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  appearance: none;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--podcast-red);
}

.progress-area input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--podcast-red);
}

.latest-episodes {
  padding: 18px 18px 12px;
}

.module-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.module-heading h2 {
  margin: 0;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.module-heading a {
  color: #cbd8ec;
  font-size: .7rem;
  font-weight: 700;
}

.latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.latest-list li {
  border-top: 1px solid rgba(255,255,255,.12);
}

.episode-select {
  width: 100%;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 12px 0;
  text-align: left;
  cursor: pointer;
}

.episode-select:hover .episode-play,
.episode-select:focus-visible .episode-play,
.episode-select.active .episode-play {
  background: var(--podcast-red);
}

.episode-select.active {
  color: #fff;
}

.episode-play {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background:
    radial-gradient(circle, rgba(255,255,255,.12), transparent 55%),
    #071a35;
  transition: background .2s ease;
}

.episode-list-copy {
  min-width: 0;
}

.episode-list-copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: .78rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.episode-list-copy small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.56);
  font-size: .67rem;
}

.episode-select time {
  align-self: end;
  color: rgba(255,255,255,.55);
  font-size: .65rem;
}

.podcast-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(280px, .95fr);
  gap: 20px;
  margin-top: 22px;
}

.light-heading h2 {
  color: var(--podcast-ink);
  font-size: 1rem;
}

.light-heading a {
  color: var(--podcast-red);
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.series-card {
  min-width: 0;
  border: 1px solid #e5e8ed;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 14px rgba(10,24,49,.045);
}

.series-cover {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 14px;
  color: #fff;
  cursor: pointer;
  text-align: center;
}

.series-cover span {
  position: relative;
  z-index: 2;
  font-size: clamp(1rem, 1.7vw, 1.65rem);
  font-weight: 800;
  line-height: 1;
}

.series-cover small {
  position: relative;
  z-index: 2;
  background: var(--podcast-red);
  padding: 3px 6px;
  font-size: .58rem;
  font-weight: 800;
}

.series-cover::after {
  content: "";
  position: absolute;
  inset: auto -22% -38% 25%;
  height: 70%;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  transform: rotate(-18deg);
}

.series-cover-gundem {
  background: linear-gradient(145deg, #0e4a75, #04182e 74%);
}

.series-cover-analiz {
  background: linear-gradient(145deg, #c90b21, #740515 78%);
}

.series-cover-roportaj {
  background: linear-gradient(145deg, #191919, #030303);
}

.series-cover-dosya {
  background: linear-gradient(145deg, #0f5678, #05263c);
}

.series-cover-ozel {
  background: linear-gradient(145deg, #14374f, #060e18);
}

.microphone-shape {
  position: absolute;
  right: 13%;
  bottom: -9%;
  width: 31%;
  height: 58%;
  border-radius: 50% 50% 42% 42%;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.22) 0 2px, transparent 2px 6px),
    linear-gradient(#c4c9cf, #555c64);
  transform: rotate(13deg);
  opacity: .86;
}

.mini-wave {
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 19%;
  height: 28px;
  background: repeating-linear-gradient(90deg, #e50922 0 2px, transparent 2px 6px);
  mask-image: linear-gradient(180deg, transparent, #000 25% 75%, transparent);
}

.red-wave {
  background: repeating-linear-gradient(90deg, #ff1e36 0 2px, transparent 2px 6px);
}

.interview-rings {
  position: absolute;
  left: 17%;
  bottom: 16%;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%;
  box-shadow:
    0 0 0 7px rgba(255,255,255,.08),
    0 0 0 14px rgba(255,255,255,.05);
}

.document-shape {
  position: absolute;
  right: 13%;
  bottom: 8%;
  width: 39%;
  height: 35%;
  border-radius: 4px;
  background:
    repeating-linear-gradient(0deg, #d7d7d7 0 2px, transparent 2px 8px),
    #f3eadc;
  transform: rotate(-8deg);
  opacity: .85;
}

.series-card h3 {
  margin: 11px 10px 6px;
  font-size: .87rem;
}

.series-card p {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  padding: 0 10px 12px;
  color: var(--podcast-muted);
  font-size: .66rem;
}

.podcast-newsletter {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e5e8ed;
  border-radius: 5px;
  background:
    radial-gradient(circle at 100% 0, rgba(8, 46, 91, .09), transparent 12rem),
    #f8f9fb;
  padding: 26px;
}

.newsletter-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--podcast-navy);
  color: #fff;
}

.podcast-newsletter h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
}

.podcast-newsletter > p {
  color: var(--podcast-muted);
  font-size: .8rem;
  line-height: 1.65;
}

.podcast-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 10px;
}

.podcast-newsletter-form input {
  min-width: 0;
  height: 43px;
  border: 1px solid #d8dee7;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  padding: 0 12px;
  font: inherit;
}

.podcast-newsletter-form button {
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--podcast-red);
  color: #fff;
  padding: 0 17px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.podcast-newsletter small {
  display: block;
  margin-top: 14px;
  color: #788395;
  font-size: .64rem;
  line-height: 1.4;
}

.form-status {
  min-height: 1.2em;
  margin-bottom: 0 !important;
  color: #0d6c3d !important;
  font-weight: 700;
}

.all-episodes {
  margin-top: 36px;
}

.all-episodes .module-heading {
  align-items: end;
}

.all-episodes .module-heading h2 {
  font-size: 1.55rem;
  text-transform: none;
}

.all-episodes .module-heading > span {
  color: var(--podcast-muted);
  font-size: .76rem;
}

.episode-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.episode-card {
  border: 1px solid #e3e7ed;
  border-radius: 6px;
  background: #fff;
  transition: transform .16s ease, box-shadow .16s ease, opacity .2s ease;
}

.episode-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(5,23,51,.08);
}

.episode-card[hidden] {
  display: none;
}

.episode-card-button {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 15px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 16px;
  text-align: left;
  cursor: pointer;
}

.episode-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--podcast-navy);
  color: #fff;
}

.episode-card-button:hover .episode-card-icon,
.episode-card-button:focus-visible .episode-card-icon {
  background: var(--podcast-red);
}

.episode-card-content {
  display: grid;
  min-width: 0;
}

.episode-category {
  color: var(--podcast-red);
  font-size: .63rem;
  font-weight: 800;
}

.episode-card-content strong {
  margin-top: 4px;
  font-size: .98rem;
  line-height: 1.3;
}

.episode-card-summary {
  margin-top: 5px;
  color: var(--podcast-muted);
  font-size: .76rem;
  line-height: 1.45;
}

.episode-card-meta {
  margin-top: 8px;
  color: #8993a2;
  font-size: .66rem;
}

.podcast-studio-ad {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 26px;
  align-items: center;
  margin-top: 34px;
  border-radius: 5px;
  background:
    linear-gradient(120deg, #dfe4ed, #f4f6f9 52%, #d8dde7);
  padding: 24px 32px;
  color: var(--podcast-ink);
}

.studio-ad-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(9, 31, 67, .12);
  border-radius: 50%;
  color: rgba(9,31,67,.22);
  font-size: 1.4rem;
}

.podcast-studio-ad span {
  color: #4b5667;
  font-size: .63rem;
  font-weight: 800;
}

.podcast-studio-ad h2 {
  margin: 6px 0 4px;
  font-size: 1.15rem;
}

.podcast-studio-ad p {
  margin: 0;
  color: #596577;
  font-size: .8rem;
}

.podcast-studio-ad > a {
  border: 1px solid #8d98a8;
  border-radius: 4px;
  padding: 12px 28px;
  color: var(--podcast-ink);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.podcast-studio-ad > a:hover,
.podcast-studio-ad > a:focus-visible {
  border-color: var(--podcast-red);
  color: var(--podcast-red);
}

@media (max-width: 1100px) {
  .podcast-page .main-nav a.active::after {
    display: none;
  }

  .podcast-feature-grid {
    grid-template-columns: 1fr;
  }

  .latest-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 18px;
  }

  .series-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .podcast-main {
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .podcast-intro {
    align-items: start;
  }

  .podcast-title-row {
    display: block;
  }

  .podcast-title-row h1 {
    font-size: 2.35rem;
  }

  .podcast-title-row p {
    margin-top: 5px;
  }

  .outline-action {
    display: none;
  }

  .podcast-tabs {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .featured-podcast {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .large-cover {
    width: min(72vw, 270px);
    justify-self: center;
  }

  .featured-copy h2 {
    font-size: 1.7rem;
  }

  .featured-copy > p {
    font-size: .88rem;
  }

  .episode-meta {
    gap: 12px;
    font-size: .7rem;
  }

  .latest-list {
    grid-template-columns: 1fr;
  }

  .podcast-content-grid {
    grid-template-columns: 1fr;
  }

  .series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .episode-card-grid {
    grid-template-columns: 1fr;
  }

  .podcast-studio-ad {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .studio-ad-icon {
    display: none;
  }

  .podcast-studio-ad > a {
    justify-self: start;
  }

  .podcast-bottom-nav a.active {
    color: var(--podcast-red);
  }
}

@media (max-width: 520px) {
  .podcast-intro {
    margin-bottom: 12px;
  }

  .page-kicker {
    display: none;
  }

  .podcast-title-row h1 {
    font-size: 2rem;
  }

  .podcast-title-row p {
    font-size: .8rem;
  }

  .podcast-tab {
    min-height: 36px;
    padding: 0 14px;
    font-size: .68rem;
  }

  .featured-podcast,
  .latest-episodes {
    border-radius: 4px;
  }

  .featured-podcast {
    padding: 14px;
  }

  .large-cover {
    width: min(62vw, 230px);
  }

  .featured-kicker {
    display: block;
    margin-top: 2px;
    font-size: .67rem;
  }

  .featured-copy h2 {
    margin-top: 8px;
    font-size: 1.42rem;
  }

  .featured-copy > p {
    font-size: .82rem;
  }

  .episode-meta span:last-child {
    display: none;
  }

  .player-controls {
    gap: 14px;
    margin: 20px 0 16px;
  }

  .round-control.small {
    width: 30px;
    height: 30px;
    font-size: .72rem;
  }

  .round-control.play-main {
    width: 58px;
    height: 58px;
  }

  .latest-episodes {
    padding: 15px;
  }

  .episode-select {
    grid-template-columns: 54px 1fr auto;
  }

  .episode-play {
    width: 54px;
    height: 54px;
  }

  .series-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .series-grid .series-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
  }

  .series-cover span {
    font-size: 1.05rem;
  }

  .podcast-newsletter {
    padding: 20px;
  }

  .podcast-newsletter-form {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .podcast-newsletter-form input {
    border: 1px solid #d8dee7;
    border-radius: 4px;
  }

  .podcast-newsletter-form button {
    min-height: 43px;
    border-radius: 4px;
  }

  .all-episodes .module-heading {
    align-items: start;
  }

  .episode-card-button {
    grid-template-columns: 48px 1fr;
    padding: 13px;
  }

  .episode-card-icon {
    width: 48px;
    height: 48px;
  }

  .episode-card-summary {
    display: none;
  }

  .podcast-studio-ad {
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .round-control,
  .episode-card,
  .episode-play {
    transition: none;
  }
}
