.newsletter-section {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-700) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  margin-inline: var(--sp-4);
}

@media (min-width: 768px) {
  .newsletter-section { margin-inline: 0; }
}

.newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.2), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15), transparent 35%);
  pointer-events: none;
}

.newsletter-section__inner {
  position: relative;
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  align-items: center;
  padding-inline: var(--sp-6);
  text-align: center;
}

@media (min-width: 768px) {
  .newsletter-section__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    padding-inline: var(--sp-10);
  }
}

.newsletter-section h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  color: #fff;
  margin: 0 0 var(--sp-2);
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: var(--fs-16);
}

.newsletter-section .newsletter-form {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-section .newsletter-form input[type="email"] {
  color: #fff;
}

.newsletter-section .newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-section .newsletter-form button {
  background: #fff;
  color: var(--color-primary-700);
}

.newsletter-section .newsletter-form button:hover {
  background: rgba(255, 255, 255, 0.9);
}
