/**
 * Podcast Feature Styles
 */

.podcast-feature {
  margin: 2rem 0;
  padding: 0;
}

.podcast-feature__container {
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
}

/* Header Section */
.podcast-feature__header {
  margin-bottom: 1rem;
}

.podcast-feature__podcast-name {
  display: block;
  margin: 0 0 0.25rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
}

.podcast-feature__episode-title {
  margin: 0 0 0.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Main Content */
.podcast-feature__main {
  margin-bottom: 1.5rem;
}

.podcast-feature__player {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 4px;
}

/* Ensure embeds are responsive */
.podcast-feature__player iframe {
  width: 100%;
  min-height: 152px;
  border: 0;
}

.podcast-feature__blurb {
  margin-bottom: 0.75rem;
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* External Link */
.podcast-feature__link {
  margin-bottom: 1.5rem;
}

.podcast-feature__link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-style: italic;
  text-decoration: none;
  color: #141414;
  border-bottom: 2px solid #dd503e;
  transition: border-color 0.2s ease;
}

.podcast-feature__link a:hover {
  border-bottom-width: 3px;
  border-color: #d73b2b;
}

/* Transcript */
.podcast-feature__transcript {
  border-top: 1px solid #ddd;
  padding-top: 1.5rem;
}

.podcast-feature__transcript-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.88px;
  color: #00693e;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.podcast-feature__transcript-toggle:hover {
  color: #639d48;
}

.podcast-feature__transcript-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.podcast-feature__transcript-icon.is-open {
  transform: rotate(180deg);
}

.podcast-feature__transcript-content {
  padding-top: 1rem;
  font-family: 'Source Serif 4', serif;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #333;
}

.podcast-feature__transcript-content p {
  margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .podcast-feature__container {
    padding: 1.5rem 0;
  }

  .podcast-feature__title {
    font-size: 1.5rem;
  }
}
