.site-footer {
  border-top: 1px solid rgba(18, 32, 51, 0.08);
  background: rgba(245, 248, 252, 0.92);
  padding: 1.55rem 0 2.35rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.15rem;
}

.footer-grid p {
  margin: 0;
  color: #708396;
  font-size: 0.8rem;
  line-height: 1.56;
}

.footer-links {
  margin-top: 0.38rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.22rem 0.48rem;
  font-size: 0.84rem;
}

.footer-links a {
  color: #34526c;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  margin-top: 0.55rem;
  max-width: 58ch;
  color: #8597a8;
  font-size: 0.76rem;
  line-height: 1.52;
}

.socials {
  display: flex;
  gap: 0.45rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 22px rgba(35, 63, 92, 0.06);
  transition: transform 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .footer-grid {
    justify-content: center;
    text-align: center;
  }
}
