<style>
.podcast-available-section {
  background: #F7F9FB;
  padding: 60px 0;
}

.podcast-available-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.podcast-available-content {
  background: white;
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin: 50px;
}

/* Header Section */
.podcast-available-header {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
}

.podcast-available-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F7F9FB 0%, #E5EBF0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.podcast-available-text {
  flex-shrink: 0;
}

.podcast-available-title {
  font-family: 'Georgia', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #00416E;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.podcast-available-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #5A6C7D;
  margin: 0;
  line-height: 1.4;
}

/* Platform Buttons */
.podcast-available-platforms {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.podcast-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: white;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  color: #1F2937;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.podcast-platform-btn:hover {
  background: #00416E;
  border-color: #00416E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 65, 110, 0.2);
}

.podcast-platform-btn:active {
  transform: translateY(0);
}

.podcast-platform-btn svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .podcast-available-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 40px;
  }
  
  .podcast-available-platforms {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .podcast-available-section {
    padding: 40px 0;
  }
  
  .podcast-available-container {
    padding: 0 24px;
  }
  
  .podcast-available-content {
    padding: 28px 24px;
    gap: 28px;
  }
  
  .podcast-available-header {
    gap: 16px;
  }
  
  .podcast-available-icon {
    width: 64px;
    height: 64px;
  }
  
  .podcast-available-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .podcast-available-title {
    font-size: 1.375rem;
  }
  
  .podcast-available-subtitle {
    font-size: 0.9375rem;
  }
    
  .podcast-available-platforms {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .podcast-platform-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .podcast-available-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .podcast-platform-btn span {
    font-size: 0.875rem;
  }
}
</style>