/*!
 * NCS — Shared Footer Stylesheet
 * Extracted from per-page <style> blocks.
 * Requires the --gold CSS custom property defined in each page's :root block.
 */

/* ── Shell ──────────────────────────────────────────────────────────────── */
footer {
  background: #081c36;
  color: #9fb2c0;
  padding: 64px 0 32px;
}

/* ── Column headings ─────────────────────────────────────────────────────── */
.foot-h {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ── All footer links ────────────────────────────────────────────────────── */
footer a {
  display: block;
  font-size: 13.5px;
  color: #e4e9ed;
  padding: 5px 0;
  text-decoration: none;
}

footer a:hover {
  color: var(--gold, #b8862e);
}

/* ── Address block ───────────────────────────────────────────────────────── */
.foot-addr p {
  font-size: 13.5px;
  color: #e4e9ed;
  line-height: 1.7;
  margin: 0;
}

/* ── Certification note ──────────────────────────────────────────────────── */
.foot-cert {
  font-size: 12px;
  color: #e4e9ed;
  margin-top: 14px;
  line-height: 1.6;
}

/* ── Bottom bar ──────────────────────────────────────────────────────────── */
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #7c90a0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13px;
  min-width: 0;
  outline: none;
  font-family: inherit;
}

.newsletter-input::placeholder {
  color: #7c90a0;
}

.newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.35);
}

.newsletter-btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.18s ease;
}

.newsletter-btn:hover {
  opacity: 0.88;
}

.newsletter-input.is-invalid {
  border-color: #dc3545;
}

.newsletter-error {
  font-size: 11.5px;
  color: #ff7b7b !important;
  display: block;
  margin-top: 6px;
}
