
/* Safe split brand lockup: avoids clipping the tall 4/crow symbol in combined SVGs. */
.site-brand {
  gap: 14px;
  min-height: 54px;
  overflow: visible;
}

.site-brand-symbol,
.site-brand-wordmark {
  display: block;
  object-fit: contain;
}

.site-brand-symbol {
  width: 54px;
  height: 48px;
  flex: 0 0 auto;
}

.site-brand-wordmark {
  width: 260px;
  max-width: min(260px, 42vw);
  height: auto;
}

.site-brand-logo {
  display: none;
}

.footer-newsletter {
  width: min(100%, 1080px);
  margin-inline: auto;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  padding: 28px 32px;
}

.footer-newsletter-copy h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.footer-newsletter-copy p {
  max-width: 30rem;
}

.footer-newsletter-form {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-newsletter .newsletter-form {
  gap: 12px 14px;
}

.footer-newsletter .osint4all-form-note {
  padding: 10px 12px;
  border-left: 2px solid rgba(173, 178, 182, 0.22);
  border-radius: 12px;
  background: rgba(3, 6, 11, 0.22);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-newsletter .newsletter-form > label {
  gap: 6px;
  font-size: 0.86rem;
}

.footer-newsletter input,
.footer-newsletter select {
  min-height: 44px;
}

.footer-newsletter .newsletter-form > button {
  min-height: 46px;
}

@media (max-width: 1160px) {
  .site-brand-symbol {
    width: 46px;
    height: 40px;
  }

  .site-brand-wordmark {
    width: 214px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-brand {
    gap: 8px;
  }

  .site-brand-symbol {
    width: 35px;
    height: 31px;
  }

  .site-brand-wordmark {
    width: 146px;
    max-width: 36vw;
  }

  .footer-newsletter {
    padding: 18px;
  }

  .footer-newsletter .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .site-brand-wordmark {
    width: 132px;
    max-width: 34vw;
  }
}
