.acw-newsletter {
  --acw-newsletter-red: var(--acw-red, #ef4136);
  --acw-newsletter-gray: var(--acw-gray, #d9d1cb);
  --acw-newsletter-ink: var(--acw-ink, #231f20);
  position: relative;
  overflow: hidden;
  background: var(--acw-newsletter-red);
  color: #fff;
  padding: clamp(5rem, 9vw, 8rem) var(--acw-pad, clamp(1rem,4vw,3rem));
  isolation: isolate;
}
.acw-newsletter::before {
  content: "";
  position: absolute;
  inset: 1.5rem -3% auto;
  height: 18px;
  background: #000;
  transform: rotate(1.25deg);
  z-index: -1;
}
.acw-newsletter__angle {
  position: absolute;
  width: 44vw;
  min-width: 420px;
  height: 130%;
  right: -13vw;
  top: -15%;
  background: #000;
  transform: rotate(-8deg);
  z-index: -1;
}
.acw-newsletter__inner {
  width: min(calc(100% - (var(--acw-pad, 1rem) * 2)), var(--acw-max, 1240px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(360px,1.15fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.acw-newsletter__kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.acw-newsletter h2 {
  margin: 0 0 1.5rem;
  color: #fff;
  font-family: "Chunky Cuts", "Arial Black", Impact, sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: .68;
  letter-spacing: -.03em;
}
.acw-newsletter__copy > p { max-width: 48ch; font-weight: 700; }
.acw-newsletter__form-wrap {
  background: var(--acw-newsletter-gray);
  color: var(--acw-newsletter-ink);
  padding: clamp(1.5rem, 4vw, 3rem);
  clip-path: polygon(0 3%, 100% 0, 97% 96%, 3% 100%);
  transform: rotate(.35deg);
}
.acw-newsletter__form { transform: rotate(-.35deg); }
.acw-newsletter__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.acw-newsletter label { display: block; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; }
.acw-newsletter label > span { display: block; margin-bottom: .42rem; }
.acw-newsletter label em { font-style: normal; font-weight: 400; opacity: .65; text-transform: none; }
.acw-newsletter input[type="text"],
.acw-newsletter input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
  color: #000;
  padding: .9rem 1rem;
  font: inherit;
  min-height: 50px;
}
.acw-newsletter__email { margin-top: 1rem; }
.acw-newsletter__consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: start;
  margin: 1rem 0 1.25rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  line-height: 1.45;
}
.acw-newsletter__consent input { width: 20px; height: 20px; margin-top: .1rem; accent-color: var(--acw-newsletter-red); }
.acw-newsletter__consent span { margin: 0 !important; }
.acw-newsletter button {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: #000;
  color: #fff;
  min-height: 52px;
  padding: .85rem 1.2rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transform: rotate(-1deg);
}
.acw-newsletter button:hover { background: var(--acw-newsletter-red); }
.acw-newsletter__message { margin: 0 0 1rem; padding: .85rem 1rem; border: 2px solid #000; background: #fff; font-weight: 700; }
.acw-newsletter__message.is-success { border-left: 12px solid #1f7a38; }
.acw-newsletter__message.is-error { border-left: 12px solid var(--acw-newsletter-red); }
.acw-newsletter__trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.acw-newsletter-editor { border: 2px dashed #ef4136; padding: 2rem; background: #d9d1cb; }
.acw-newsletter-editor strong { display: block; font-size: 2rem; line-height: 1; margin: .4rem 0; }

@media (max-width: 880px) {
  .acw-newsletter__inner { grid-template-columns: 1fr; }
  .acw-newsletter__angle { width: 70vw; right: -32vw; }
}
@media (max-width: 600px) {
  .acw-newsletter { padding-inline: 1rem; }
  .acw-newsletter__inner { width: 100%; }
  .acw-newsletter__row { grid-template-columns: 1fr; }
  .acw-newsletter h2 { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .acw-newsletter__form-wrap { padding: 1.5rem; }
}

/* v1.2 alignment refinements */
.acw-newsletter {
  margin-block: -1px !important;
  padding-inline: var(--acw-pad, clamp(1rem,2.5vw,2rem));
}
.acw-newsletter::before { display: none; }
.acw-newsletter__inner {
  width: min(calc(100% - (var(--acw-pad, 1rem) * 2)), var(--acw-max, 1440px));
}
.acw-newsletter__form-wrap {
  margin: 0;
}
@media (max-width: 600px) {
  .acw-newsletter { margin-block: 0 !important; }
}
