.bs-newsletter {
  width: min(100%, 28rem);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
  color: #fff;
}

.bs-newsletter__intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

.bs-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bs-newsletter__row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.bs-newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 3.6rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 0 1.2rem;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.bs-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.bs-newsletter__input:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.bs-newsletter__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-width: 11rem;
  height: 3.6rem;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 9999px;
  background: #1125a7;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.bs-newsletter__submit:hover {
  background: #1a30cc;
  transform: translateY(-1px);
}

.bs-newsletter__submit:disabled {
  opacity: 0.75;
  cursor: wait;
  transform: none;
}

.bs-newsletter__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.55;
}

.bs-newsletter__consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  accent-color: #1125a7;
  flex: 0 0 auto;
}

.bs-newsletter__consent a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.bs-newsletter__status {
  min-height: 1.35rem;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.bs-newsletter__status[data-state="success"] {
  color: #d7ff76;
}

.bs-newsletter__status[data-state="error"] {
  color: #ff8f8f;
}

.bs-newsletter__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .bs-newsletter {
    width: 100%;
  }

  .bs-newsletter__row {
    flex-direction: column;
  }

  .bs-newsletter__submit {
    width: 100%;
  }

  .bs-newsletter__intro,
  .bs-newsletter__status {
    text-align: center;
  }
}
