/*
 * PomeroyX Software Licence
 * Copyright © 2026 PomeroyX Software. All rights reserved.
 * Unauthorized copying, modification, distribution, resale, or reuse is prohibited.
 */

.newsletter-subscribe {
  padding: 46px 24px;
  border-top: 1px solid #352117;
  border-bottom: 1px solid #352117;
  background: linear-gradient(180deg, #080808, #111 55%, #080808);
  color: #d6d6d6;
  text-align: center;
}

.newsletter-subscribe-inner {
  width: min(820px, 100%);
  margin: 0 auto;
}

.newsletter-label {
  margin: 0 0 8px;
  color: #d3702d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.newsletter-subscribe h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3.3vw, 38px);
  line-height: 1.15;
}

.newsletter-intro {
  margin: 14px auto 22px;
  color: #bbb;
  line-height: 1.6;
}

.newsletter-subscribe form {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 10px;
  align-items: end;
}

.newsletter-subscribe label {
  display: grid;
  gap: 6px;
  color: #aaa;
  font-size: 12px;
  text-align: left;
}

.newsletter-subscribe input,
.newsletter-subscribe button {
  min-height: 48px;
  border: 1px solid #555;
  border-radius: 2px;
  font: inherit;
}

.newsletter-subscribe input {
  padding: 0 14px;
  background: #050505;
  color: #fff;
}

.newsletter-subscribe input:focus {
  border-color: #d3702d;
  outline: 1px solid #d3702d;
}

.newsletter-subscribe button {
  padding: 0 24px;
  border-color: #d3702d;
  background: #d3702d;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-message {
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid #d3702d;
  color: #fff;
}

.newsletter-message.error {
  border-color: #888;
}

.newsletter-privacy {
  margin: 11px 0 0;
  color: #888;
  font-size: 12px;
}

.newsletter-honeypot {
  position: absolute !important;
  left: -10000px !important;
}

@media (max-width: 760px) {
  .newsletter-subscribe form {
    grid-template-columns: 1fr;
  }
}

