<style>
.episode-details-section {
  background: white;
  padding: 80px 0;
}

.episode-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  margin-top: 100px;
  margin-bottom: 100px;
}

.episode-details-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
}

/* Section Header */
.episode-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.episode-section-bar {
  width: 4px;
  height: 32px;
  background: #E31E24;
  border-radius: 2px;
}

.episode-section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

/* About Content */
.episode-about-content {
  font-family: 'Raleway';
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4B5563;
}

.episode-about-content p {
  margin: 0 0 20px 0;
}

/* Guest Card */
.episode-guest-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.episode-guest-image {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px auto;
}

.episode-guest-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #E5E7EB;
}

.episode-guest-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #E31E24;
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.episode-guest-name {
  font-family: 'Raleway';
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.episode-guest-title {
  font-family: 'Raleway';
  font-size: 0.9375rem;
  font-weight: 600;
  color: #E31E24;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 4px 0;
}

.episode-guest-company {
  font-family: 'Raleway';
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0 0 20px 0;
}

.episode-guest-bio {
  font-family: 'Raleway';
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4B5563;
  text-align: left;
  padding: 20px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 20px;
}

.episode-guest-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.episode-guest-social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #E5E7EB;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s ease;
}

.episode-guest-social-btn:hover {
  background: #F3F4F6;
  color: #1F2937;
  border-color: #D1D5DB;
}

/* Listen On */
.episode-listen-on {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
}

.episode-listen-on h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px 0;
}

.episode-listen-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  text-decoration: none;
  color: #1F2937;
  font-family: 'Raleway';
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.episode-listen-link:last-child {
  margin-bottom: 0;
}

.episode-listen-link:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
  transform: translateX(4px);
}

.episode-listen-link svg:first-child {
  flex-shrink: 0;
}

.episode-listen-link span {
  flex: 1;
}

.episode-listen-link svg:last-child {
  color: #9CA3AF;
  flex-shrink: 0;
}

/* Video Section */
.episode-video-section {
  margin-top: 80px;
}

.episode-video-wrapper {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
}

.episode-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.episode-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .episode-details-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .episode-details-right {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .episode-details-section {
    padding: 60px 0;
  }
  
  .episode-details-container {
    padding: 0 24px;
  }
  
  .episode-section-header h2 {
    font-size: 1.75rem;
  }
  
  .episode-about-content {
    font-size: 1rem;
  }
  
  .episode-guest-card {
    padding: 24px;
  }
  
  .episode-video-section {
    margin-top: 60px;
  }
  
  .episode-video-wrapper {
    padding: 16px;
  }
}
</style>