/* IME — newsletter band and site footer. */

/* ---------- Footer ---------- */
.newsletter-band {
  background: linear-gradient(180deg, var(--ice), #d9e9ff);
  padding: 48px 6%;
  text-align: center;
}

.newsletter-band h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy-deep);
  font-weight: 800;
  margin-bottom: 12px;
}

.newsletter-band p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 620px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 240px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--navy-deep);
  background: #fff;
  font-size: .95rem;
  font-family: inherit;
  color: var(--ink);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 94, 203, .15);
}

.newsletter-form button {
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  background: var(--navy-deep);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.newsletter-form button:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

footer {
  background: #061530;
  border-top: none;
  padding: 60px 6% 30px;
}

.footer-simple-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-simple-grid>div:not(:first-child) {
  padding-top: 62px;
}

@media(max-width:900px) {
  .footer-simple-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-simple-grid>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-simple-grid>div:not(:first-child) {
    padding-top: 0;
  }
}

@media(max-width:700px) {
  .footer-simple-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-simple-grid>div:not(:first-child) {
    padding-top: 0;
  }
}

footer h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.05rem;
  font-weight: 700;
}

footer ul li {
  margin-bottom: 12px;
  color: #9fb8e6;
  font-size: .92rem;
}

footer a {
  color: #9fb8e6;
  font-size: .92rem;
  transition: color .2s ease;
}

footer a:hover {
  color: #fff;
}

.footer-legal {
  color: #9fb8e6;
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 420px;
}

.footer-legal strong {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0d2650;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.footer-social a:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  font-size: .85rem;
  color: #7fa0d4;
}