.partner-trust-shell {
  background: transparent;
  box-shadow: none;
}

.partner-trust-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.partner-trust-copy {
  max-width: 34rem;
  margin: 0 auto;
}

.partner-logo-card {
  border: 0;
  background: transparent;
}

.partner-logo-placeholder {
  border: 0;
  background: transparent;
}

.newsletter-input {
  width: 100%;
  border: 1px solid rgba(199, 199, 186, 0.72);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.58);
  color: #201b0c;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  line-height: 1.3;
  backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
  color: rgba(32, 27, 12, 0.58);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(88, 96, 56, 0.42);
  box-shadow: 0 0 0 3px rgba(88, 96, 56, 0.1);
}

.newsletter-checkbox {
  appearance: none;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(124, 87, 48, 0.5);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.52);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.newsletter-checkbox::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #586038;
  transform: scale(0);
  transition: transform 160ms ease;
}

.newsletter-checkbox:checked::after {
  transform: scale(1);
}

.newsletter-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 96, 56, 0.1);
}

.newsletter-submit {
  border-radius: 9999px;
  background: #586038;
  color: #ffffff;
  min-width: 8.25rem;
  padding: 0.72rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.newsletter-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #71794e;
}

.newsletter-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.newsletter-status {
  min-height: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(32, 27, 12, 0.72);
}

.newsletter-status.is-error {
  color: #ba1a1a;
}

.newsletter-status.is-success {
  color: #586038;
}