#ind-news-dialog {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  width: min(540px, calc(100vw - 32px));
  max-width: none;
  height: fit-content;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: clamp(24px, 5vw, 44px);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid #d9d5cf;
  border-top: 5px solid #c5161d;
  border-radius: 4px;
  background: #fffefa;
  color: #161616;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 20px 80px rgb(0 0 0 / 24%);
  z-index: 100001;
}

#ind-news-dialog *,
#ind-news-dialog *::before,
#ind-news-dialog *::after { box-sizing: border-box; }

#ind-news-dialog:not([open]):not(.is-open) { display: none; }
#ind-news-dialog[open],
#ind-news-dialog.is-open { display: block; }
#ind-news-dialog::backdrop { background: rgb(0 0 0 / 60%); }
.ind-news-overlay { position: fixed; inset: 0; z-index: 100000; background: rgb(0 0 0 / 60%); }
body.ind-news-modal-open { overflow: hidden; }

#ind-news-dialog [data-ind-news-close]:not(.ind-news-decline) {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #161616;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
#ind-news-dialog [data-ind-news-close]:not(.ind-news-decline):hover { background: #efede8; }
#ind-news-dialog h1,
#ind-news-dialog h2,
#ind-news-dialog h3 {
  max-width: 95%;
  margin: 8px 0 16px;
  padding-right: 20px;
  color: #111;
  font-size: clamp(26px, 6vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}
#ind-news-dialog p { margin: 0 0 16px; }
#ind-news-dialog .ind-news-eyebrow {
  margin: 0 44px 10px 0;
  color: #a81118;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}
#ind-news-dialog .ind-news-intro { color: #454545; }
#ind-news-dialog .ind-news-fineprint { margin-top: 12px; color: #555; font-size: 12px; line-height: 1.5; }
#ind-news-dialog a { color: #941018; text-decoration: underline; text-underline-offset: 3px; }
#ind-news-form { display: grid; gap: 14px; margin: 22px 0 0; padding: 0; }
#ind-news-form > p { margin: 0; }
#ind-news-form label { margin: 0; color: #242424; font-size: 14px; line-height: 1.45; }
#ind-news-form .ind-news-field { display: grid; gap: 6px; margin: 0; }
#ind-news-form .ind-news-field > label { font-weight: 600; }
#ind-news-form input[type="email"],
#ind-news-form input[type="text"] {
  display: block;
  width: 100%;
  min-height: 48px;
  margin: 5px 0 0;
  padding: 11px 12px;
  border: 1px solid #9f9b95;
  border-radius: 2px;
  background: #fff;
  color: #111;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: none;
}
#ind-news-form input::placeholder { color: #74716d; opacity: 1; }
#ind-news-form input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 9px 0 0;
  padding: 0;
  accent-color: #b7121b;
  vertical-align: top;
  cursor: pointer;
}
#ind-news-form .ind-news-choice { display: flex; align-items: flex-start; gap: 0; }
#ind-news-form .ind-news-choices { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; min-width: 0; }
#ind-news-form .ind-news-choices legend { margin-bottom: 8px; padding: 0; font-size: 14px; font-weight: 600; }
#ind-news-form .ind-news-privacy { padding-top: 12px; border-top: 1px solid #e3dfd8; }
#ind-news-form .ind-news-honeypot,
#ind-news-form [name="website"],
#ind-news-dialog [hidden] { display: none !important; }
#ind-news-form [type="submit"] {
  display: block;
  width: 100%;
  min-height: 50px;
  margin: 4px 0 0;
  padding: 12px 18px;
  border: 1px solid #b7121b;
  border-radius: 2px;
  background: #b7121b;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .015em;
  white-space: normal;
  cursor: pointer;
  box-shadow: none;
}
#ind-news-form [type="submit"]:hover:not(:disabled) { background: #941018; border-color: #941018; }
#ind-news-form [type="submit"]:disabled { opacity: .72; cursor: default; }
#ind-news-dialog .ind-news-decline {
  display: block;
  position: static;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 10px 14px;
  border: 1px solid #9f9b95;
  border-radius: 2px;
  background: transparent;
  color: #333;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  white-space: normal;
  cursor: pointer;
  box-shadow: none;
}
#ind-news-dialog .ind-news-decline:hover { background: #efede8; border-color: #555; }
#ind-news-dialog :focus-visible,
#ind-news-open:focus-visible,
[data-ind-news-open]:focus-visible { outline: 3px solid #b7121b; outline-offset: 4px; }
#ind-news-status { min-height: 0; margin: 0; font-size: 14px; line-height: 1.5; overflow-wrap: anywhere; }
#ind-news-status:empty { display: none; }
#ind-news-status:not(:empty) { padding: 12px; border-left: 3px solid #777; background: #f2f0eb; color: #333; }
#ind-news-status[data-state="success"] { border-color: #375340; color: #25422d; background: #f0f5f0; }
#ind-news-status[data-state="error"] { border-color: #a81118; color: #861018; background: #fff0ee; }
#ind-news-open,
[data-ind-news-open] {
  display: inline-block;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
#ind-news-open[hidden],
[data-ind-news-open][hidden] { display: none !important; }

@media (prefers-reduced-motion: no-preference) {
  #ind-news-dialog.is-open { animation: ind-news-enter 180ms ease-out; }
  @keyframes ind-news-enter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-width: 480px) {
  #ind-news-dialog { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); padding: 24px 20px; }
  #ind-news-dialog h1, #ind-news-dialog h2, #ind-news-dialog h3 { margin-top: 14px; padding-right: 24px; }
  #ind-news-form { gap: 12px; }
}
@media (forced-colors: active) {
  #ind-news-dialog, #ind-news-form input, #ind-news-form [type="submit"] { border: 1px solid CanvasText; }
}
