<style>
.FieldLabel {
  color: white;
}
.podcast-newsletter-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.podcast-newsletter-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.podcast-newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.podcast-newsletter-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.podcast-newsletter-content {
  background: #1B3A5C;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.podcast-newsletter-text {
  color: white;
}

.podcast-newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(227, 30, 36, 0.2);
  border: 1px solid rgba(227, 30, 36, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FF6B6B;
  margin-bottom: 24px;
  font-family: Raleway;
}

.podcast-newsletter-heading {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin: 0 0 24px 0;
}

.podcast-newsletter-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.podcast-newsletter-description p {
  margin: 0 0 12px 0;
}

.podcast-newsletter-description p:last-child {
  margin: 0;
}

.podcast-newsletter-form {
  position: relative;
}

/* Demo Form Styles */
.podcast-newsletter-form-demo {
  width: 100%;
}

.podcast-form-group {
  display: flex;
  gap: 12px;
  width: 100%;
}

.podcast-email-input {
  flex: 1;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
}

.podcast-email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.podcast-email-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.podcast-subscribe-btn {
  padding: 18px 40px;
  background: #E31E24;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.4);
}

.podcast-subscribe-btn:hover {
  background: #C91A1F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.5);
}

/* HubSpot Form Overrides */
.podcast-form-wrapper .hs-form {
  display: flex;
  gap: 12px;
}

.podcast-form-wrapper .hs-form-field {
  flex: 1;
  margin-bottom: 0 !important;
}

.podcast-form-wrapper .hs-input {
  width: 100% !important;
  padding: 18px 28px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  color: white !important;
}

.podcast-form-wrapper .hs-input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.podcast-form-wrapper .hs-input:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  outline: none !important;
}

.podcast-form-wrapper .hs-button {
  padding: 18px 40px !important;
  background: #E31E24 !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: white !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.podcast-form-wrapper .hs-button:hover {
  background: #C91A1F !important;
  transform: translateY(-2px);
}

.podcast-form-wrapper .hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 28px;
}

.podcast-form-wrapper .hs-error-msg {
  color: #FF6B6B;
  font-size: 0.875rem;
}

.podcast-form-wrapper .submitted-message {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

@media (max-width: 1024px) {
  .podcast-newsletter-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px;
  }
  
  .podcast-newsletter-heading {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .podcast-newsletter-section {
    padding: 60px 0;
  }
  
  .podcast-newsletter-container {
    padding: 0 24px;
  }
  
  .podcast-newsletter-content {
    padding: 32px 24px;
    gap: 32px;
  }
  
  .podcast-newsletter-heading {
    font-size: 2rem;
  }
  
  .podcast-newsletter-description {
    font-size: 1rem;
  }
  
  .podcast-form-group {
    flex-direction: column;
  }
  
  .podcast-subscribe-btn {
    width: 100%;
    justify-content: center;
  }
  
  .podcast-form-wrapper .hs-form {
    flex-direction: column;
  }
  
  .podcast-form-wrapper .hs-button {
    width: 100% !important;
  }
}
  
  [data-hsfc-id=Renderer] .hsfc-FieldLabel {
    color: #fff !important;
  } 
</style>