.newsletter-section {
  min-width: 0;
  padding: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  align-items: center;
  gap: 72px;
  color: #f8efe0;
  background:
    radial-gradient(circle at 12% 10%, rgba(163, 115, 56, .28), transparent 25rem),
    linear-gradient(135deg, rgba(255, 255, 255, .055), transparent 44%),
    #26211b;
  border: 1px solid rgba(163, 115, 56, .42);
  box-shadow: var(--shadow);
}

.newsletter-section > *,
.newsletter-copy,
.newsletter-form {
  min-width: 0;
  max-width: 100%;
}

.newsletter-section .eyebrow {
  color: #d7b783;
}

.newsletter-section h2 {
  margin-bottom: 20px;
  color: #fff8ed;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

.newsletter-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 248, 237, .76);
  font-size: 1.05rem;
  line-height: 1.7;
}

.newsletter-topics {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  color: rgba(255, 248, 237, .88);
  font-size: .9rem;
  list-style: none;
}

.newsletter-topics li {
  display: flex;
  align-items: baseline;
  gap: 11px;
}

.newsletter-topics li::before {
  content: "◆";
  flex: 0 0 auto;
  color: #d7b783;
  font-size: .62rem;
}

.newsletter-form {
  width: 100%;
  padding: 30px;
  border: 1px solid rgba(242, 229, 206, .22);
  background: rgba(255, 252, 244, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  color: #fff8ed;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsletter-fields {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-fields input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(242, 229, 206, .42);
  border-radius: 2px;
  color: var(--ink);
  background: #fffaf0;
  box-shadow: inset 0 1px 4px rgba(35, 25, 16, .08);
}

.newsletter-fields input::placeholder {
  color: #867e72;
}

.newsletter-fields input:focus {
  border-color: #d7b783;
  outline: 3px solid rgba(215, 183, 131, .24);
  outline-offset: 2px;
}

.newsletter-form .button {
  min-height: 50px;
  border-color: #d7b783;
  color: #2d2116;
  background: #d7b783;
  white-space: nowrap;
}

.newsletter-note {
  margin: 14px 0 0;
  color: rgba(255, 248, 237, .58);
  font-size: .76rem;
  line-height: 1.55;
}

.newsletter-note a {
  color: rgba(255, 248, 237, .84);
}

@media (max-width: 900px) {
  .newsletter-section {
    padding: 52px;
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .newsletter-section {
    width: 100%;
    padding: 54px 24px;
  }

  .newsletter-form {
    padding: 22px;
  }

  .newsletter-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-form .button {
    width: 100%;
  }
}
