.newsletter-stripe {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 30px;
  background: #EAF0F6;
  padding: 14px;
  border-radius: 4px;
}

.newsletter-stripe__copy {
  min-width: 0;
  font-size: inherit;
  line-height: inherit;
}

.newsletter-stripe__form-wrap {
  width: 460px;
}

.newsletter-stripe__form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.newsletter-stripe__input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #000;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 18px;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
}

.newsletter-stripe__input:focus {
  border-color: #000;
  outline: none;
}

.newsletter-stripe__button {
  flex: 0 0 auto;
  margin: 0;
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  background: #C21F32;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.newsletter-stripe__button:hover,
.newsletter-stripe__button:focus {
  background: #C21F32;
  color: #fff;
}

.newsletter-stripe-hidden .newsletter-stripe {
  display: none !important;
}

@media (max-width: 1100px) {
  .newsletter-stripe {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .newsletter-stripe__form-wrap {
    width: 100%;
  }
}
