.podcast-single {
  background-color: #fff;
}
.podcast-single .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.podcast-single .podcast-hero {
  padding: 4rem 0;
  padding-bottom: 0rem;
  height: auto;
}
.podcast-single .podcast-hero .container {
  max-width: 1200px;
}
.podcast-single .podcast-meta {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center; /* Center align the tag */
  gap: 1rem;
}
.podcast-single .podcast-meta .podcast-label {
  background-color: #F49C68;
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.podcast-single .podcast-meta time {
  color: #666;
  font-size: 0.875rem;
}
.podcast-single .podcast-meta .tag {
  background-color: #2b2846;
}
.podcast-single .podcast-header {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .podcast-single .podcast-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.podcast-single .podcast-header-content {
  display: flex;
  flex-direction: column;
}
.podcast-single .podcast-header-content .entry-title {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 1.2rem;
  font-weight: 700;
  margin-bottom: 0px;
}
.podcast-single .podcast-header-content .card__date {
  margin-bottom: auto;
}
.podcast-single .podcast-header-content .podcast-player {
  margin-top: 1rem;
}
.podcast-single .podcast-header-content .podcast-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 2rem;
}
.podcast-single .podcast-header-content .podcast-player {
  border-radius: 8px;
  overflow: hidden;
}
.podcast-single .podcast-header-content .podcast-player .player-container {
  background-color: #f49c68;
}
.podcast-single .podcast-header-content .podcast-player .player-container iframe {
  width: 100%;
  border: none;
  margin-bottom: 0;
}
.podcast-single .featured-image {
  height: 100%;
  background-size: cover;
}
.podcast-single .featured-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.podcast-single .featured-image .image-caption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}
.podcast-single .podcast-content {
  padding: 4rem 0;
}
.podcast-single .podcast-content .content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .podcast-single .podcast-content .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.podcast-single .entry-content {
  font-size: 1.125rem;
  line-height: 1.6;
}
.podcast-single .entry-content p {
  margin-bottom: 1.5rem;
}
.podcast-single .podcast-links-container {
  background: transparent;
  padding: 0;
  margin-top: 1rem;
}
.podcast-single .podcast-links-container h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.podcast-single .podcast-links {
  display: flex;
  flex-direction: row;
  gap: 0.5rem; /* Reduced spacing between icons */
  align-items: flex-start; /* Align icons with the top */
}
.podcast-single .podcast-links .podcast-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-direction: column;
  max-width: 50px;
}
.podcast-single .podcast-links .podcast-link:hover {
  opacity: 0.8;
}
.podcast-single .podcast-links .podcast-link .podcast-icon {
  width: 32px; /* Adjusted size for better consistency */
  height: 32px;
  fill: #f49c68;
}
.podcast-single .podcast-links .podcast-link .podcast-link-title {
  font-size: 0.6rem;
  color: #666;
  margin-top: 0.3rem; /* Space between icon and text */
  text-align: center; /* Center align the text */
  line-height: 0.8rem;
}
.podcast-single .podcast-links .podcast-link .podcast-icon {
  width: 32px;
  height: 32px;
  fill: #f49c68 !important;
  background: none !important;
  display: block;
}
.podcast-single .podcast-links .podcast-link i {
  color: #f49c68;
  font-size: 32px; /* Ensure consistent size */
}/*# sourceMappingURL=podcast.css.map */