/* =============================================
   PODCAST PAGE — Dr. Yiftach Yanai
   ============================================= */

/* ===================== HEADER — always dark ===================== */
.site-header {
  background: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(10px);
}

/* ===================== HERO ===================== */
.pod-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
}

.pod-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  z-index: 0;
}

.pod-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(60,55,50,0.7) 40%, rgba(80,75,70,0.88) 100%);
  z-index: 1;
}

.pod-hero__content {
  position: relative;
  z-index: 2;
  margin-right: 5%;
  margin-left: auto;
  max-width: 520px;
  padding: 100px 40px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: rtl;
  text-align: right;
}

.pod-hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}

.pod-hero__title-light {
  font-weight: 400;
  color: #fff;
}

.pod-hero__title-pink {
  font-weight: 900;
  color: #E8556D;
}

.pod-hero__desc {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 36px;
  max-width: 440px;
}

/* Featured episode card */
.pod-featured {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.pod-featured__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pod-featured__meta {
  font-size: 12px;
  color: #aaa;
}

.pod-featured__tags {
  font-size: 11px;
  color: #999;
}

.pod-featured__title {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-top: 4px;
}

.pod-featured__thumb-wrap {
  position: relative;
  flex-shrink: 0;
}

.pod-featured__thumb {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

.pod-featured__play {
  position: absolute;
  bottom: 6px;
  left: 6px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.pod-featured__play:hover {
  background: rgba(0,0,0,0.75);
  color: #fff;
}

/* ===================== EPISODES SECTION ===================== */
.pod-episodes {
  background: #f5f2ef;
  padding: 48px 0 80px;
}

.pod-episodes__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Season tabs */
.pod-seasons {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 36px;
  direction: rtl;
}

.pod-seasons__label {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.pod-seasons__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.pod-seasons__btn--active {
  background: #E8556D;
  color: #fff;
}

.pod-seasons__btn:hover:not(.pod-seasons__btn--active) {
  background: #ddd;
}

/* Episodes grid — 2 columns */
.pod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Single episode card */
.pod-ep {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  direction: rtl;
  transition: box-shadow 0.2s;
}

.pod-ep:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pod-ep__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.pod-ep__meta {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 11px;
  color: #999;
}

.pod-ep__tags {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 10px;
  color: #bbb;
}

.pod-ep__title {
  font-family: 'Noto Sans Hebrew', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  margin-top: 4px;
}

.pod-ep__thumb-wrap {
  position: relative;
  flex-shrink: 0;
}

.pod-ep__thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.pod-ep__play {
  position: absolute;
  bottom: 6px;
  left: 6px;
  width: 26px;
  height: 26px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.pod-ep__play:hover {
  background: rgba(0,0,0,0.75);
  color: #fff;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .pod-hero__content {
    margin-right: 0;
    max-width: none;
    padding: 100px 32px 48px;
  }
}

@media (max-width: 768px) {
  .pod-hero {
    min-height: auto;
  }
  .pod-hero__content {
    padding: 100px 20px 40px;
  }
  .pod-hero__title {
    font-size: 36px;
  }
  .pod-grid {
    grid-template-columns: 1fr;
  }
  .pod-episodes__inner {
    padding: 0 16px;
  }
}
