/* Spotify-style podcast cards — shared embed (matches podcast index page) */
/* Landing pages with global link colors that override card styling */
.oc-pool-landing .lg-podcast-section a.pc-card,
.oc-pool-landing .lg-podcast-section a.pc-card:hover,
.oc-pool-landing .lg-podcast-section a.pc-card:focus,
.oc-pool-landing .lg-podcast-section a.pc-card:active,
.pi-mkt-landing .lg-podcast-section a.pc-card,
.pi-mkt-landing .lg-podcast-section a.pc-card:hover,
.pi-mkt-landing .lg-podcast-section a.pc-card:focus,
.pi-mkt-landing .lg-podcast-section a.pc-card:active {
  color: inherit !important;
  text-decoration: none !important;
}

.oc-pool-landing .lg-podcast-section .pc-card p,
.oc-pool-landing .lg-podcast-section .lg-podcast-head p,
.pi-mkt-landing .lg-podcast-section .pc-card p,
.pi-mkt-landing .lg-podcast-section .lg-podcast-head p {
  margin-bottom: 0;
}

/* plastic-surgery-marketing-agency: global p { color: #18160f !important } breaks dark cards */
.plastic-mkt-landing .lg-podcast-section a.pc-card,
.plastic-mkt-landing .lg-podcast-section a.pc-card:hover,
.plastic-mkt-landing .lg-podcast-section a.pc-card:focus,
.plastic-mkt-landing .lg-podcast-section a.pc-card:active {
  color: inherit !important;
  text-decoration: none !important;
}

.plastic-mkt-landing .lg-podcast-section .pc-title {
  color: var(--pc-card-title) !important;
  margin-bottom: 0;
}

.plastic-mkt-landing .lg-podcast-section .pc-show {
  color: var(--pc-card-subtitle) !important;
  margin-bottom: 0;
}

.plastic-mkt-landing .lg-podcast-section .pc-desc {
  color: var(--pc-card-desc) !important;
  margin-bottom: 0;
}

.plastic-mkt-landing .lg-podcast-section .pc-meta,
.plastic-mkt-landing .lg-podcast-section .pc-meta span {
  color: var(--pc-card-meta) !important;
  margin-bottom: 0;
}

.plastic-mkt-landing .lg-podcast-section .lg-podcast-head p {
  color: rgba(20, 18, 14, 0.72) !important;
  margin-bottom: 0;
}

.lg-podcast-section {
  --pc-accent: #1db954;
  --pc-accent-ink: #0a0a0a;
  --pc-blue: #4f8cff;
  --pc-card-dark: #181820;
  --pc-card-dark-hover: #22222c;
  --pc-card-dark-border: rgba(255, 255, 255, 0.08);
  --pc-card-title: #ffffff;
  --pc-card-subtitle: #b3b3b3;
  --pc-card-desc: #a7a7a7;
  --pc-card-meta: #8e8e96;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  padding-inline: clamp(1rem, 6%, 4rem);
  background: linear-gradient(
    180deg,
    rgba(246, 244, 241, 0.5) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.lg-podcast-section .lg-podcast-head {
  max-width: min(58rem, 100%);
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lg-podcast-section .lg-podcast-head h2,
.lg-podcast-section .lg-podcast-head .hf-cards-title {
  max-width: 44rem;
  width: 100%;
  margin: 0 auto 0.5rem !important;
  text-align: center !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.lg-podcast-section .lg-podcast-head p {
  max-width: 40rem;
  width: 100%;
  margin: 0.75rem auto 0 !important;
  text-align: center !important;
  color: rgba(20, 18, 14, 0.72);
}

.lg-podcast-section .lg-podcast-head .section-label,
.lg-podcast-section .lg-podcast-head .label,
.lg-podcast-section .lg-podcast-head .label-coral,
.lg-podcast-section .lg-podcast-head .aa-kicker {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.lg-podcast-section .pc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
  width: 100%;
  max-width: min(58rem, 100%);
  margin: 0 auto;
  align-items: stretch;
}

/* Multiple episodes: same full-width card, stacked vertically (not side-by-side) */
.lg-podcast-section .pc-list--multi {
  gap: clamp(1.15rem, 2.5vw, 1.5rem);
}

.lg-podcast-section .pc-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  align-items: center;
  padding: clamp(0.75rem, 1.4vw, 1rem) clamp(0.85rem, 1.6vw, 1.1rem);
  background: linear-gradient(
    165deg,
    #1e1e28 0%,
    var(--pc-card-dark) 42%,
    #14141a 100%
  );
  border: 1px solid var(--pc-card-dark-border);
  border-radius: 16px;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.26),
    0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lg-podcast-section .pc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(
    90deg,
    var(--pc-accent),
    rgba(61, 116, 255, 0.55),
    rgba(255, 107, 52, 0.35)
  );
  opacity: 0.92;
}

.lg-podcast-section .pc-card:hover,
.lg-podcast-section .pc-card:focus-visible {
  background: linear-gradient(
    165deg,
    #282832 0%,
    var(--pc-card-dark-hover) 45%,
    #1a1a22 100%
  );
  border-color: rgba(255, 255, 255, 0.14);
  color: inherit;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(29, 185, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.lg-podcast-section .pc-card:focus-visible {
  outline: 2px solid var(--pc-accent);
  outline-offset: 3px;
}

.lg-podcast-section .pc-card:hover .pc-play {
  transform: scale(1.08);
  background: #1ed760;
  box-shadow:
    0 8px 28px rgba(29, 185, 84, 0.55),
    0 0 0 4px rgba(29, 185, 84, 0.15);
}

.lg-podcast-section .pc-cover {
  position: relative;
  width: clamp(72px, 11vw, 100px);
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.38);
}

.lg-podcast-section .pc-card:hover .pc-cover {
  box-shadow:
    0 0 0 1px rgba(29, 185, 84, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.42);
}

.lg-podcast-section .pc-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lg-podcast-section .pc-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lg-podcast-section .pc-body-detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.lg-podcast-section .pc-title {
  font-weight: 700;
  font-size: clamp(0.82rem, 1.35vw, 0.98rem);
  line-height: 1.35;
  color: var(--pc-card-title);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lg-podcast-section .pc-show {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pc-card-subtitle);
  margin: 0;
}

.lg-podcast-section .pc-desc {
  font-size: 0.9rem;
  color: var(--pc-card-desc);
  line-height: 1.55;
  margin: 0.25rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lg-podcast-section .pc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  font-size: 0.8rem;
  color: var(--pc-card-meta);
  margin-top: 0.5rem;
  align-items: center;
}

.lg-podcast-section .pc-meta .dot {
  opacity: 0.55;
}

.lg-podcast-section .pc-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lg-podcast-section .pc-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1;
}

.lg-podcast-section .pc-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(165deg, #1ed760 0%, var(--pc-accent) 100%);
  color: var(--pc-accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(29, 185, 84, 0.42);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.lg-podcast-section .pc-play svg {
  width: 18px;
  height: 18px;
  transform: translateX(1px);
}

.lg-podcast-section .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .lg-podcast-section .pc-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "cover title"
      "detail detail"
      "actions actions";
    column-gap: 0.75rem;
    row-gap: 0.4rem;
    align-items: start;
    padding: 0.72rem 0.85rem 0.65rem;
    border-radius: 18px;
  }

  .lg-podcast-section .pc-card::before {
    border-radius: 18px 18px 0 0;
    z-index: 2;
  }

  .lg-podcast-section .pc-body {
    display: contents;
  }

  .lg-podcast-section .pc-cover {
    grid-area: cover;
    width: clamp(72px, 19vw, 92px);
  }

  .lg-podcast-section .pc-title {
    grid-area: title;
    position: relative;
    padding-left: 0.82rem;
    margin: 0;
    font-size: clamp(0.86rem, 3.75vw, 0.96rem);
    line-height: 1.28;
    align-self: start;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .lg-podcast-section .pc-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pc-blue);
    box-shadow: 0 0 0 2px rgba(79, 140, 255, 0.22);
  }

  .lg-podcast-section .pc-body-detail {
    grid-area: detail;
    gap: 0.28rem;
    padding: 0.35rem 0 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .lg-podcast-section .pc-show {
    font-size: 0.74rem;
  }

  .lg-podcast-section .pc-desc {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .lg-podcast-section .pc-meta {
    margin-top: 0.15rem;
    font-size: 0.72rem;
  }

  .lg-podcast-section .pc-actions {
    grid-area: actions;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.45rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .lg-podcast-section .pc-play {
    width: 48px;
    height: 48px;
    margin-left: auto;
    box-shadow:
      0 6px 22px rgba(29, 185, 84, 0.5),
      0 0 0 1px rgba(29, 185, 84, 0.35),
      0 0 28px rgba(29, 185, 84, 0.45);
  }

  .lg-podcast-section .pc-play svg {
    width: 20px;
    height: 20px;
  }
}
