.guest-hero-v4 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-bottom: 0.5px solid var(--border);
  direction: rtl;
  align-items: center;
  min-height: 380px;
  padding: 0 0 0 0;
}

.guest-photo-v4 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  align-self: stretch;
  border-left: 0.5px solid var(--border);
  background: rgba(243, 235, 221, 0.01);
}

.guest-photo-v4 img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  border: 0.5px solid var(--border2);
}

.guest-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--mid);
  border: 0.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 900;
  color: var(--border2);
}

.guest-info-v4 {
  padding: 48px var(--pad-h-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guest-godar-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.guest-name-v4 {
  font-size: clamp(28px, 4vw, 48px);
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--bone);
  line-height: 1.2;
  margin-bottom: 4px;
}

.guest-role-v4 {
  font-size: 14px;
  color: rgba(243, 235, 221, 0.5);
  line-height: 1.6;
  margin-bottom: 8px;
}

.guest-tags-v4 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.guest-stats-v4 {
  display: flex;
  gap: 40px;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 0.5px solid var(--border);
}

.guest-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.guest-stat-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--bone);
  line-height: 1;
}

.guest-stat-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.06em;
}

.guest-bio-v4 {
  padding: 48px var(--pad-h-lg) 56px;
  max-width: 800px;
  border-bottom: 0.5px solid var(--border);
  direction: rtl;
}

.guest-bio-v4 p {
  font-size: 14px;
  color: rgba(243, 235, 221, 0.82);
  line-height: 2.1;
  margin-bottom: 20px;
  text-align: justify;
}

.guest-bio-v4 p:last-child {
  margin-bottom: 0;
}

.guest-episodes-v4 {
  border-bottom: 0.5px solid var(--border);
  direction: rtl;
}

.guest-ep-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px var(--pad-h-lg);
  border-bottom: 0.5px solid var(--border);
  gap: 24px;
  transition: background 0.2s;
}

.guest-ep-row:last-of-type {
  border-bottom: none;
}

.guest-ep-row:hover {
  background: rgba(243, 235, 221, 0.02);
}

.guest-ep-row.playing {
  background: rgba(255, 217, 37, 0.03);
  border-right: 1.5px solid rgba(255, 217, 37, 0.5);
}

.guest-ep-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.guest-ep-case {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.guest-ep-case a {
  color: var(--gray);
  transition: color 0.2s;
}

.guest-ep-case a:hover {
  color: var(--yellow);
}

.guest-ep-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--bone);
  line-height: 1.45;
  transition: color 0.2s;
  text-decoration: none;
  display: block;
}

.guest-ep-title:hover {
  color: var(--yellow);
}

.guest-ep-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  direction: ltr;
  flex-shrink: 0;
}

.guest-ep-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.guest-ep-num {
  font-size: 28px;
  font-weight: 900;
  color: rgba(243, 235, 221, 0.15);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  direction: ltr;
  user-select: none;
}

.guest-episodes-v4 .ep-desc {
  padding: 0 var(--pad-h-lg) 0 var(--pad-h-lg);
}

.guest-episodes-v4 .ep-desc.open {
  padding: 0 var(--pad-h-lg) 16px var(--pad-h-lg);
}

@media (max-width: 768px) {
  .guest-hero-v4 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .guest-photo-v4 {
    border-left: none;
    border-bottom: 0.5px solid var(--border);
    padding: 36px var(--pad-h);
    justify-content: flex-start;
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }

  .guest-photo-v4 img,
  .guest-photo-placeholder {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }

  .guest-info-v4 {
    padding: 32px var(--pad-h) 40px;
  }

  .guest-name-v4 {
    font-size: 26px;
  }

  .guest-stat-num {
    font-size: 40px;
  }

  .guest-stats-v4 {
    gap: 28px;
  }

  .guest-ep-row {
    padding: 18px var(--pad-h);
    gap: 16px;
  }

  .guest-ep-title {
    font-size: 14px;
  }

  .guest-ep-num {
    display: none;
  }

  .guest-bio-v4 {
    padding: 32px var(--pad-h) 40px;
  }

  .guest-episodes-v4 .ep-desc,
  .guest-episodes-v4 .ep-desc.open {
    padding-right: var(--pad-h);
    padding-left: var(--pad-h);
  }
}

@media (max-width: 480px) {
  .guest-photo-v4 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .guest-name-v4 {
    font-size: 22px;
  }

  .guest-stats-v4 {
    gap: 20px;
  }

  .guest-stat-num {
    font-size: 36px;
  }
}

@media (max-width: 1024px) {
  :root {
    --pad-h: 32px;
    --pad-h-lg: 48px;
  }

  .home-hero {
    min-height: 520px;
  }

  .hero-title {
    font-size: 22px;
  }

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

  .poster-card:nth-child(2) {
    border-left: none;
  }

  .poster-card:nth-child(odd) {
    border-left: none;
  }

  .poster-card:nth-child(even) {
    border-left: 0.5px solid var(--border);
  }

  .quote-section {
    grid-template-columns: 200px 1fr;
  }

  .featured-parvande {
    min-height: 340px;
  }

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

  .parvande-card:nth-child(3n + 1) {
    border-left: 0.5px solid var(--border);
  }

  .parvande-card:nth-child(odd) {
    border-left: none;
  }

  .parvande-card:nth-child(even) {
    border-left: 0.5px solid var(--border);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-col:nth-child(2) {
    border-left: none;
  }

}

@media (max-width: 768px) {
  :root {
    --pad-h: 20px;
    --pad-h-lg: 24px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .hero-poster {
    height: 65vw;
    min-height: 260px;
    max-height: 420px;
    order: -1;
  }

  .hero-info {
    border-left: none;
    border-top: 0.5px solid var(--border);
    padding: 28px var(--pad-h) 36px;
    justify-content: flex-start;
    gap: 20px;
  }

  .hero-title {
    font-size: 20px;
  }

  .countdown {
    gap: 4px;
  }

  .cd-num {
    font-size: 28px;
  }

  .quote-section {
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto;
  }

  .quote-img::after {
    background: linear-gradient(to bottom, transparent 40%, var(--dark2) 100%);
  }

  .quote-content {
    padding: 32px var(--pad-h);
  }

  .quote-text {
    font-size: 16px;
  }

  .section-bar {
    padding: 14px var(--pad-h);
  }

  .posters-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 44px;
  }

  .poster-card-img {
    aspect-ratio: 2 / 3;
  }

  .featured-parvande {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
    min-height: auto;
    direction: rtl;
  }

  .featured-poster {
    height: 280px;
  }

  .featured-info {
    border-left: none;
    border-top: 0.5px solid var(--border);
  }

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

  .parvande-card {
    border-left: none;
  }

  .parvande-card:nth-child(even) {
    border-left: 0.5px solid var(--border);
  }

  .parvande-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 260px auto;
    min-height: auto;
    direction: rtl;
  }

  .parvande-poster {
    min-height: 220px;
    padding: 32px 20px;
  }

  .parvande-info {
    border-left: none;
    border-top: 0.5px solid var(--border);
  }

  .parvande-meta {
    flex-wrap: wrap;
    gap: 16px;
  }

  .episode-top {
    grid-template-columns: 40px 1fr auto;
    padding: 14px var(--pad-h) 10px;
    gap: 12px;
  }

  .ep-desc {
    padding: 0 var(--pad-h) 0 68px;
  }

  .ep-desc.open {
    padding: 0 var(--pad-h) 14px 68px;
  }

  .player-inner {
    grid-template-columns: 1fr auto;
    padding: 10px var(--pad-h);
    gap: 12px;
  }

  .player-progress {
    display: none;
  }

  .ep-header {
    grid-template-columns: 1fr;
    padding: 28px var(--pad-h);
  }

  .ep-page-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .guest-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
    min-height: auto;
    direction: rtl;
  }

  .guest-photo {
    height: 240px;
  }

  .guest-info-col {
    border-left: none;
    border-top: 0.5px solid var(--border);
  }

  .guest-stats {
    gap: 20px;
  }

  .guest-name {
    font-size: 22px;
  }

  .about-hero {
    padding: 48px var(--pad-h) 40px;
  }

  .about-headline {
    font-size: 24px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .manifesto-quote {
    position: static;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team-member:nth-child(4n) {
    border-left: 0.5px solid var(--border);
  }

  .team-member:nth-child(even) {
    border-left: none;
  }

  .team-member:nth-child(n + 5) {
    border-bottom: 0.5px solid var(--border);
  }

  .team-member:nth-child(n + 3):last-child,
  .team-member:nth-child(n + 3):nth-last-child(-n+2) {
    border-bottom: none;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    direction: rtl;
  }

  .contact-info-col {
    border-left: none;
    border-bottom: 0.5px solid var(--border);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ep-text-body {
    padding: 24px var(--pad-h) 32px;
  }

  .ep-nav {
    grid-template-columns: 1fr;
  }

  .ep-nav-item.prev {
    border-left: none;
    border-top: 0.5px solid var(--border);
    text-align: right;
    direction: rtl;
  }

  .bio-body {
    padding: 24px var(--pad-h) 32px;
  }
}

@media (max-width: 480px) {
  .home-hero .hero-title {
    font-size: 18px;
  }

  .parvande-title {
    font-size: 20px;
  }

  .guest-name {
    font-size: 20px;
  }

  .about-headline {
    font-size: 20px;
  }

  .poster-card {
    border-left: none;
  }

  .poster-card-img {
    aspect-ratio: 2 / 3;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown .cd-num {
    font-size: 22px;
  }
}

:root {
  --pad-h: clamp(28px, 7vw, 100px);
  --pad-h-lg: clamp(32px, 8vw, 118px);
  --design-max: 1170px;
}

html {
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--bone);
  font-size: 15px;
}

.single-guest {
  width: min(var(--design-max), calc(100% - 96px));
  margin: 0 auto;
}

.home-hero {
  grid-template-columns: minmax(0, 500px) minmax(420px, 575px);
  gap: 80px;
  align-items: end;
  min-height: 775px;
  border: 0;
  padding-top: 48px;
}

.hero-info {
  padding: 0 34px 20px 0;
  justify-content: flex-end;
  gap: 86px;
}

.hero-copy {
  text-align: right;
}

.hero-badge {
  font-size: 14px;
  font-weight: 600;
  color: rgba(119, 117, 111, 0.88);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(30px, 3.05vw, 41px);
  line-height: 1.55;
  margin-bottom: 72px;
  color: #f2eee5;
}

.hero-desc {
  max-width: 450px;
  margin-right: auto;
  margin-bottom: 0;
  color: rgba(119, 117, 111, 0.92);
  font-size: 12px;
  line-height: 1.9;
  text-align: justify;
  text-align-last: right;
}

.hero-guests {
  display: none;
}

.clubhouse-box {
  width: 325px;
  margin-right: auto;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.ch-label,
.ch-info {
  font-size: 12px;
  font-weight: 600;
  color: rgba(119, 117, 111, 0.86);
  margin-bottom: 2px;
}

.ch-info {
  margin-bottom: 24px;
}

.countdown {
  justify-content: center;
  gap: 13px;
  margin-bottom: 32px;
}

.cd-num {
  font-size: 36px;
  color: #f1ede4;
  letter-spacing: 0.01em;
}

.cd-lbl {
  font-size: 12px;
  letter-spacing: 0;
}

.cd-sep {
  font-size: 34px;
  margin-top: -3px;
  color: rgba(237, 233, 223, 0.72);
  opacity: 1;
}

.ch-link {
  display: inline-flex;
  min-width: 100px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0;
}

.hero-poster {
  align-self: end;
  width: min(100%, 575px);
  height: 806px;
  background: #070707;
}

.hero-poster img {
  object-fit: cover;
}

.section-bar {
  padding: 94px 0 28px;
}

.section-bar-title,
.section-bar-link {
  font-size: 15px;
  font-weight: 600;
  color: rgba(119, 117, 111, 0.88);
}

.posters-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 0 132px;
  background: transparent;
  column-gap: 1px;
}

.poster-card {
  background: transparent;
}

.poster-card-img {
  aspect-ratio: 283 / 402;
  background: #060606;
}

.poster-card-info {
  padding: 19px 0 0;
}

.poster-card-title {
  font-size: 17px;
  line-height: 1.55;
  color: #f0ece3;
  margin-bottom: 4px;
}

.poster-card-ep {
  font-size: 12px;
  color: rgba(119, 117, 111, 0.8);
}

.quote-section {
  grid-template-columns: 1fr;
  min-height: 470px;
  border: 0;
  background: transparent;
  text-align: center;
}

.quote-img {
  display: none;
}

.quote-content {
  padding: 0 120px;
  align-items: center;
  gap: 32px;
}

.quote-content::before {
  content: "”";
  align-self: flex-end;
  margin-left: 18px;
  font-family: var(--font-fa);
  font-size: 116px;
  line-height: 0.5;
  color: var(--bone);
}

.quote-text {
  max-width: 930px;
  font-size: clamp(30px, 3.6vw, 45px);
  line-height: 1.45;
  text-align: center;
}

.quote-meta {
  align-items: center;
  color: rgba(119, 117, 111, 0.9);
}

.quote-speaker {
  color: rgba(237, 233, 223, 0.74);
  font-size: 17px;
}

.quote-sub,
.quote-episode {
  font-size: 14px;
}

.single-case {
  padding-top: 102px;
}

.parvande-hero {
  grid-template-columns: 430px minmax(0, 520px);
  justify-content: space-between;
  align-items: start;
  min-height: 620px;
  border: 0;
}

.parvande-poster {
  padding: 0;
  justify-content: flex-start;
  background: transparent;
}

.parvande-poster img {
  width: 430px;
  max-height: none;
  aspect-ratio: 430 / 614;
  object-fit: cover;
}

.parvande-info {
  padding: 45px 0 0;
  border: 0;
  justify-content: flex-start;
}

.parvande-title {
  font-size: clamp(44px, 5.1vw, 70px);
  line-height: 1.18;
  margin-bottom: 22px;
  max-width: 540px;
}

.parvande-subtitle {
  font-size: 17px;
  color: rgba(119, 117, 111, 0.9);
  margin-bottom: 28px;
}

.parvande-desc {
  max-width: 535px;
  font-size: 16px;
  line-height: 1.82;
  color: rgba(119, 117, 111, 0.9);
  text-align: justify;
  text-align-last: right;
  margin-bottom: 78px;
}

.parvande-meta {
  justify-content: center;
  margin-bottom: 58px;
}

.meta-item {
  align-items: center;
}

.meta-label,
.guests-label,
.episodes-title,
.episodes-count {
  font-size: 14px;
  letter-spacing: 0;
  color: rgba(119, 117, 111, 0.86);
}

.meta-value {
  font-size: 17px;
  font-weight: 900;
}

.guests-label {
  text-align: center;
  margin-bottom: 16px;
}

.guests-list {
  justify-content: center;
  gap: 12px;
}

.guest-tag {
  color: rgba(237, 233, 223, 0.65);
  border-color: rgba(119, 117, 111, 0.75);
  font-size: 14px;
  padding: 4px 12px 6px;
}

.episodes-bar {
  width: 520px;
  margin-right: auto;
  padding: 90px 0 20px;
  justify-content: center;
}

.episodes-list {
  border: 0;
  padding-bottom: 60px;
}

.episode-row {
  border: 0;
}

.episode-row:hover {
  background: transparent;
}

.episode-top {
  grid-template-columns: 44px minmax(0, 530px) 330px;
  gap: 34px;
  padding: 22px 0;
}

.single-case .ep-avatar {
  display: none;
}

.single-case .ep-info {
  justify-content: flex-start;
}

.ep-seq {
  font-size: 24px;
  color: #f0ece3;
}

.ep-label,
.ep-guest {
  color: rgba(119, 117, 111, 0.86);
  font-size: 13px;
}

.ep-title {
  font-size: 22px;
  line-height: 1.45;
  color: #f0ece3;
}

.ep-actions {
  justify-content: flex-end;
  gap: 38px;
}

.ep-icon-btn,
.ep-play-btn {
  width: 35px;
  height: 35px;
  color: rgba(119, 117, 111, 0.78);
}

.ep-icon-btn svg,
.ep-play-btn svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.2;
}

.single-guest {
  padding-top: 78px;
}

.guest-hero-v4 {
  grid-template-columns: 390px minmax(0, 530px);
  justify-content: space-between;
  min-height: 410px;
  border: 0;
  align-items: center;
}

.guest-photo-v4 {
  padding: 0;
  border: 0;
  background: transparent;
  justify-content: flex-start;
}

.guest-photo-v4 img,
.guest-photo-placeholder {
  width: 350px;
  height: 350px;
  border-radius: 50%;
}

.guest-info-v4 {
  padding: 0;
  text-align: center;
  align-items: center;
}

.guest-godar-label {
  font-size: 16px;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.guest-name-v4 {
  font-size: clamp(52px, 5.4vw, 76px);
  line-height: 1.18;
  margin-bottom: 24px;
}

.guest-role-v4 {
  font-size: 17px;
  margin-bottom: 48px;
}

.guest-tags-v4 {
  display: none;
}

.guest-stats-v4 {
  border: 0;
  gap: 110px;
  margin: 0;
  padding: 0;
}

.guest-stat {
  align-items: center;
}

.guest-stat-num {
  font-size: 60px;
}

.guest-stat-label {
  font-size: 15px;
  letter-spacing: 0;
}

.guest-bio-v4 {
  max-width: 1080px;
  padding: 126px 40px 120px;
  margin: 0 auto;
  border: 0;
}

.guest-bio-v4 p {
  font-size: 17px;
  line-height: 2.05;
  color: rgba(119, 117, 111, 0.98);
  text-align: right;
  margin-bottom: 30px;
}

.guest-episodes-v4 {
  border: 0;
  padding-bottom: 80px;
}

.guest-ep-row {
  grid-template-columns: minmax(0, 520px) 420px;
  gap: 70px;
  padding: 18px 0;
  border: 0;
}

.guest-ep-row:hover {
  background: transparent;
}

.guest-ep-info {
  text-align: right;
}

.guest-ep-case {
  font-size: 14px;
  color: rgba(119, 117, 111, 0.86);
}

.guest-ep-title {
  font-size: 25px;
}

.guest-ep-actions {
  justify-content: flex-start;
  gap: 40px;
}

.guest-ep-icons {
  gap: 36px;
}

.guest-ep-num {
  color: rgba(237, 233, 223, 0.85);
  font-size: 22px;
}

.single-episode {
  padding-top: 48px;
}

.ep-header-v4 {
  grid-template-columns: 350px minmax(0, 620px);
  justify-content: space-between;
  border: 0;
  direction: ltr;
  align-items: center;
}

.ep-header-content {
  padding: 0;
  border: 0;
  direction: rtl;
  order: 1;
}

.ep-header-sidebar {
  order: 1;
  padding: 0;
  background: transparent;
  align-items: center;
  gap: 34px;
}

.ep-guest-photo {
  width: 260px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.ep-guest-photo img,
.ep-guest-photo-placeholder {
  border-radius: 50%;
}

.ep-sidebar-actions {
  gap: 32px;
}

.ep-sidebar-guest-name {
  font-size: 15px;
  color: #f0ece3;
}

.ep-seq-label {
  display: block;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0;
  color: #f0ece3;
  margin-bottom: 18px;
}

.ep-header-v4 .ep-page-title {
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.14;
  text-align: center;
  margin-bottom: 38px;
}

.ep-header-v4 .ep-page-desc {
  max-width: 590px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(119, 117, 111, 0.95);
  text-align: justify;
  text-align-last: right;
}

.ep-header-guest-name {
  display: none;
}

.ep-spotify-embed {
  width: min(1060px, 100%);
  margin: 76px auto 24px;
  border: 0;
  background: transparent;
}

.ep-spotify-embed iframe {
  height: 78px;
  filter: grayscale(1) brightness(0.78);
}

.ep-transcript-section {
  border: 0;
}

.ep-transcript-body {
  max-width: 1085px;
  padding: 0 28px 80px;
}

.ep-transcript-body p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(119, 117, 111, 0.95);
  text-align: justify;
  text-align-last: right;
  margin-bottom: 22px;
}

.ep-nav {
  display: none;
}

@media (max-width: 1024px) {
  .single-guest {
    width: min(100% - 48px, var(--design-max));
  }

  .home-hero,
  .parvande-hero,
  .guest-hero-v4,
  .ep-header-v4 {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .hero-poster {
    height: 620px;
  }

  .quote-content {
    padding: 0 40px;
  }

  .episode-top,
  .guest-ep-row {
    grid-template-columns: 44px 1fr auto;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .single-guest {
    width: calc(100% - 36px);
  }

  .home-hero,
  .parvande-hero,
  .guest-hero-v4,
  .ep-header-v4 {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
  }

  .home-hero {
    padding-top: 24px;
  }

  .hero-poster {
    order: -1;
    width: 100%;
    height: auto;
    aspect-ratio: 575 / 806;
  }

  .hero-info {
    padding: 0;
    gap: 42px;
  }

  .hero-title {
    margin-bottom: 28px;
    font-size: 30px;
  }

  .hero-desc {
    max-width: none;
  }

  .clubhouse-box {
    width: 100%;
  }

  .posters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .quote-content {
    padding: 0;
  }

  .quote-text {
    font-size: 28px;
  }

  .parvande-poster img,
  .guest-photo-v4 img,
  .guest-photo-placeholder {
    width: min(100%, 350px);
    height: auto;
  }

  .parvande-info,
  .guest-info-v4 {
    text-align: right;
    align-items: flex-start;
  }

  .parvande-title,
  .guest-name-v4,
  .ep-header-v4 .ep-page-title {
    font-size: 38px;
    text-align: right;
  }

  .episodes-bar {
    width: 100%;
    padding-top: 50px;
  }

  .episode-top,
  .guest-ep-row {
    grid-template-columns: 38px 1fr;
  }

  .ep-actions,
  .guest-ep-actions {
    grid-column: 2;
    justify-content: flex-start;
    gap: 18px;
  }

  .ep-title,
  .guest-ep-title {
    font-size: 19px;
  }

  .guest-bio-v4 {
    padding: 48px 0 64px;
  }

  .ep-header-content {
    order: 1;
  }

  .ep-header-sidebar {
    order: 2;
  }

  .ep-guest-photo {
    width: 190px;
  }

  .ep-header-v4 .ep-page-desc,
  .ep-transcript-body p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .posters-grid {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .parvande-title,
  .guest-name-v4,
  .ep-header-v4 .ep-page-title {
    font-size: 30px;
  }

  .cd-num {
    font-size: 26px;
  }

  .quote-text {
    font-size: 23px;
  }
}

body.single-guest .single-guest {
  width: min(1068px, calc(100% - 180px));
  margin: 0 auto;
  padding: 64px 0 165px;
}

body.single-guest .guest-hero-v4 {
  display: grid;
  grid-template-columns: 390px minmax(0, 520px);
  justify-content: space-between;
  align-items: center;
  gap: 92px;
  min-height: 355px;
  border: 0;
  direction: ltr;
}

body.single-guest .guest-photo-v4 {
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
}

body.single-guest .guest-photo-v4 img,
body.single-guest .guest-photo-placeholder {
  width: 350px;
  height: 350px;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

body.single-guest .guest-info-v4 {
  align-items: center;
  padding: 0;
  text-align: center;
  direction: rtl;
}

body.single-guest .guest-godar-label {
  margin: 0 0 30px;
  color: #77736a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

body.single-guest .guest-name-v4 {
  margin: 0 0 26px;
  color: #f3ebdd;
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

body.single-guest .guest-role-v4 {
  margin: 0 0 54px;
  color: #77736a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

body.single-guest .guest-tags-v4 {
  display: none;
}

body.single-guest .guest-stats-v4 {
  display: flex;
  justify-content: center;
  gap: 104px;
  margin: 0;
  padding: 0;
  border: 0;
}

body.single-guest .guest-stat {
  align-items: center;
  min-width: 86px;
}

body.single-guest .guest-stat-num {
  color: #f3ebdd;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}

body.single-guest .guest-stat-label {
  margin-top: 18px;
  color: #77736a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

body.single-guest .guest-bio-v4 {
  max-width: 1040px;
  margin: 0 auto;
  padding: 124px 0 142px;
  border: 0;
}

body.single-guest .guest-bio-v4 p {
  margin: 0 0 30px;
  color: rgba(119, 117, 111, 0.98);
  font-size: 17px;
  font-weight: 500;
  line-height: 2.05;
  text-align: right;
}

body.single-guest .guest-episodes-v4 {
  display: grid;
  grid-template-columns: 390px minmax(0, 520px);
  justify-content: space-between;
  gap: 92px;
  border: 0;
  padding: 0;
  direction: ltr;
}

body.single-guest .guest-episodes-head {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  color: #77736a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
  direction: rtl;
}

body.single-guest .guest-ep-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 390px minmax(0, 520px);
  justify-content: space-between;
  align-items: end;
  gap: 92px;
  padding: 46px 0 0;
  border: 0;
  background: transparent;
  direction: ltr;
}

body.single-guest .guest-ep-row:hover,
body.single-guest .guest-ep-row.playing {
  background: transparent;
  border: 0;
}

body.single-guest .guest-ep-actions {
  grid-column: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  min-height: 42px;
  direction: ltr;
}

body.single-guest .guest-ep-icons {
  gap: 34px;
}

body.single-guest .guest-episodes-v4 .ep-icon-btn,
body.single-guest .guest-episodes-v4 .ep-play-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(119, 117, 111, 0.72);
}

body.single-guest .guest-episodes-v4 .ep-icon-btn:hover,
body.single-guest .guest-episodes-v4 .ep-play-btn:hover {
  color: #f3ebdd;
}

body.single-guest .guest-episodes-v4 .ep-icon-btn svg,
body.single-guest .guest-episodes-v4 .ep-play-btn svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.15;
}

body.single-guest .guest-ep-num {
  display: none;
}

body.single-guest .guest-ep-info {
  grid-column: 2;
  align-items: flex-start;
  gap: 6px;
  text-align: right;
  direction: rtl;
}

body.single-guest .guest-ep-source {
  margin: 0 0 20px;
  color: #77736a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

body.single-guest .guest-ep-case {
  margin: 0;
  color: rgba(119, 117, 111, 0.86);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

body.single-guest .guest-ep-title {
  max-width: 520px;
  color: #f3ebdd;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.45;
}

body.single-guest .guest-episodes-v4 .ep-desc {
  grid-column: 2;
  padding: 0;
  direction: rtl;
}

body.single-guest .guest-episodes-v4 .ep-desc.open {
  padding: 18px 0 0;
}

body.single-guest .guest-episodes-v4 .ep-desc-text {
  border: 0;
  padding: 0;
  color: #77736a;
  font-size: 14px;
  line-height: 1.9;
}

@media (max-width: 1179px) {
  body.single-guest .single-guest {
    width: min(100% - 72px, 960px);
  }

  body.single-guest .guest-hero-v4,
  body.single-guest .guest-episodes-v4,
  body.single-guest .guest-ep-row {
    grid-template-columns: minmax(260px, 350px) minmax(0, 1fr);
    gap: 56px;
  }

  body.single-guest .guest-name-v4 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  body.single-guest .single-guest {
    width: calc(100% - 36px);
  }

  body.single-guest .single-guest {
    padding-top: 36px;
    padding-bottom: 96px;
  }

  body.single-guest .guest-hero-v4,
  body.single-guest .guest-episodes-v4,
  body.single-guest .guest-ep-row {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: rtl;
  }

  body.single-guest .guest-photo-v4 {
    justify-content: center;
  }

  body.single-guest .guest-photo-v4 img,
  body.single-guest .guest-photo-placeholder {
    width: min(72vw, 300px);
    height: min(72vw, 300px);
  }

  body.single-guest .guest-info-v4 {
    align-items: flex-start;
    text-align: right;
  }

  body.single-guest .guest-godar-label {
    margin-bottom: 18px;
  }

  body.single-guest .guest-name-v4 {
    margin-bottom: 18px;
    font-size: 38px;
    text-align: right;
  }

  body.single-guest .guest-role-v4 {
    margin-bottom: 34px;
    font-size: 15px;
  }

  body.single-guest .guest-stats-v4 {
    justify-content: flex-start;
    gap: 44px;
  }

  body.single-guest .guest-stat {
    align-items: flex-start;
    min-width: 0;
  }

  body.single-guest .guest-stat-num {
    font-size: 44px;
  }

  body.single-guest .guest-stat-label {
    margin-top: 10px;
    font-size: 12px;
  }

  body.single-guest .guest-bio-v4 {
    padding: 62px 0 78px;
  }

  body.single-guest .guest-bio-v4 p {
    font-size: 14px;
    line-height: 2;
    text-align: right;
  }

  body.single-guest .guest-episodes-head,
  body.single-guest .guest-ep-row,
  body.single-guest .guest-ep-actions,
  body.single-guest .guest-ep-info,
  body.single-guest .guest-episodes-v4 .ep-desc {
    grid-column: auto;
  }

  body.single-guest .guest-episodes-head {
    text-align: right;
  }

  body.single-guest .guest-ep-row {
    padding-top: 18px;
  }

  body.single-guest .guest-ep-actions {
    order: 2;
  }

  body.single-guest .guest-ep-info {
    order: 1;
  }

  body.single-guest .guest-ep-source {
    margin-bottom: 12px;
    font-size: 13px;
  }

  body.single-guest .guest-ep-case {
    font-size: 14px;
  }

  body.single-guest .guest-ep-title {
    font-size: 20px;
  }

  body.single-guest .guest-ep-icons {
    gap: 22px;
  }

  body.single-guest .guest-episodes-v4 .ep-icon-btn,
  body.single-guest .guest-episodes-v4 .ep-play-btn {
    width: 34px;
    height: 34px;
  }

  body.single-guest .guest-episodes-v4 .ep-icon-btn svg,
  body.single-guest .guest-episodes-v4 .ep-play-btn svg {
    width: 30px;
    height: 30px;
  }
}

:root {
  --godar-page-title-size: 35px;
  --godar-page-title-line: 1.28;
}

@media (min-width: 769px) {
  .home-hero .hero-title,
  body.single-case .parvande-title,
  body.single-episode .ep-header-v4 .ep-page-title,
  body.single-guest .guest-name-v4,
  .cases-featured-title,
  .cases-archive-title,
  .guests-archive-title,
  .page-title,
  .about-headline,
  .contact-title {
    font-size: var(--godar-page-title-size);
    line-height: var(--godar-page-title-line);
  }
}

body.single-guest .guest-info-v4 {
  align-items: stretch;
  text-align: right;
}

body.single-guest .guest-godar-label,
body.single-guest .guest-name-v4,
body.single-guest .guest-role-v4 {
  width: 100%;
  text-align: right;
}

body.single-guest .guest-name-v4 {
  margin-bottom: 32px;
}

body.single-guest .guest-role-v4 {
  margin-bottom: 58px;
}

body.single-guest .guest-stats-v4 {
  justify-content: flex-start;
}

body.single-guest .guest-stat {
  align-items: flex-start;
  text-align: right;
}

body.single-guest .guest-bio-v4 p {
  text-align: justify;
  text-align-last: right;
}

@media (max-width: 768px) {
  .home-hero .hero-title,
  body.single-case .parvande-title,
  body.single-episode .ep-header-v4 .ep-page-title,
  body.single-guest .guest-name-v4,
  .cases-featured-title,
  .cases-archive-title,
  .guests-archive-title,
  .page-title,
  .about-headline,
  .contact-title {
    font-size: 30px;
    line-height: 1.32;
  }
}
