/* Demo-aligned newsletter strip */
.utn-newsletter {
  --g: #1e3a28;
  --tan: #c4975a;
  --cream: #f4f0e6;
  --utn-field-h: 42px;
  margin: 0;
  padding: 22px 24px 20px;
  background: var(--g);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #18180f;
}

.utn-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.utn-newsletter-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #f4f0e6;
  margin: 0 0 6px;
  line-height: 1.2;
}

.utn-newsletter-sub {
  font-size: 12px;
  color: rgba(244, 240, 230, 0.6);
  line-height: 1.6;
  margin: 0 0 18px;
}

.utn-interest-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.5);
  margin-bottom: 10px;
  display: block;
}

.utn-interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin-bottom: 16px;
}

.utn-interest-tag {
  font: inherit;
  font-size: 11px;
  border: 1px solid rgba(244, 240, 230, 0.25);
  border-radius: 20px;
  padding: 5px 13px;
  color: rgba(244, 240, 230, 0.65);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  background: transparent;
}

.utn-interest-tag:hover {
  border-color: var(--tan);
  color: var(--tan);
}

.utn-interest-tag.selected {
  background: var(--tan);
  border-color: var(--tan);
  color: #fff;
}

.utn-selected-summary {
  font-size: 11px;
  color: rgba(244, 240, 230, 0.55);
  margin-bottom: 10px;
  min-height: 16px;
}

.utn-email-row {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.utn-email-input {
  flex: 1 1 200px;
  min-width: 0;
  height: var(--utn-field-h);
  box-sizing: border-box;
  background: rgba(244, 240, 230, 0.1);
  border: 1px solid rgba(244, 240, 230, 0.2);
  border-radius: 4px;
  padding: 0 14px;
  font-size: 12px;
  line-height: 1.2;
  color: #f4f0e6;
  outline: none;
}

.utn-email-input::placeholder {
  color: rgba(244, 240, 230, 0.35);
}

.utn-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--utn-field-h);
  box-sizing: border-box;
  margin: 0;
  background: var(--tan);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}

.utn-email-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.utn-newsletter-note {
  font-size: 10px;
  color: rgba(244, 240, 230, 0.35);
  margin-top: 2px;
  padding-bottom: 0;
}

.utn-form-message {
  font-size: 12px;
  margin: 0 0 10px;
  color: rgba(244, 240, 230, 0.85);
}

.utn-form-message.is-error {
  color: #ffb4a8;
}

.utn-form-message.is-success {
  color: #c8e6c9;
}
