.newsletter-page {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(180deg, var(--fw-white-050) 0%, var(--fw-white-150) 100%);
  min-height: 100%;
}

.newsletter-page-hero {
  position: relative;
  background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--fw-black-000) 68%, transparent),
      color-mix(in srgb, var(--fw-black-000) 40%, transparent)
    ),
    url(/assets/img/desk-2.png);
  background-size: cover;
  background-position: center;
  color: var(--fw-white-000);
  overflow: hidden;
}

.newsletter-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--color-blue-500) 30%, transparent), transparent 42%);
}

.newsletter-page-hero .hero-inner {
  position: relative;
  z-index: 2;
  padding: 78px 0 72px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.newsletter-page-hero .hero-inner h1 {
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.95rem);
  line-height: 1.18;
  text-shadow: 0 3px 12px color-mix(in srgb, var(--fw-black-000) 24%, transparent);
}

.newsletter-page-hero .hero-inner .lead {
  color: color-mix(in srgb, var(--fw-white-000) 88%, transparent);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-hero-kicker {
  display: inline-block;
  background: color-mix(in srgb, var(--fw-white-000) 20%, transparent);
  color: var(--fw-white-000);
  border: 1px solid color-mix(in srgb, var(--fw-white-000) 40%, transparent);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsletter-page-main h1,
.newsletter-page-main h2,
.newsletter-page-main h3 {
  color: var(--fw-black-150);
}

.newsletter-page-shell {
  /* border: 1px solid color-mix(in srgb, var(--fw-black-000) 10%, transparent); */
  /* border-radius: 16px; */
  background: var(--fw-white-000);
  /* box-shadow: 0 16px 30px color-mix(in srgb, var(--fw-black-000) 8%, transparent); */
}

.newsletter-page-content {
  min-height: 380px;
  /* border-radius: 12px; */
  /* border: 1px solid color-mix(in srgb, var(--fw-black-000) 8%, transparent); */
  background: var(--fw-white-000);
}

.newsletter-page-content iframe,
.newsletter-page-content img,
.newsletter-page-content video {
  max-width: 100%;
}

@media (max-width: 767px) {
  .newsletter-page-hero .hero-inner {
    padding: 60px 0 54px;
  }
}
