.site-footer {
  background: #071a34;
  color: #dce8f7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
  padding: 46px 0;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #dce8f7;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 14px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.social-row a {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 6px 9px;
  line-height: 1.2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: #06152a;
}

.footer-bottom-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .9rem;
}

.footer-bottom a {
  color: #fff;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .footer-bottom-inner {
    padding: 12px 0;
    display: grid;
    text-align: center;
    justify-content: center;
  }
}

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