/* ====== FOOTER ====== */
.site-footer {
  background: #111;
  color: #fff;
  padding: 48px 0 24px 0;
  font-size: 1rem;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.footer-logo {
  width: 90px;
  margin-bottom: 0.3em;
}

.footer-baseline {
  font-size: 0.95em;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 1em;
}

.footer-addresses {
  font-style: normal;
  font-size: 0.95em;
  opacity: 0.8;
  margin-top: 0.5em;
}

.footer-addresses strong {
  font-weight: 900;
}

.footer-title {
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5em;
  font-size: 1.1em;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.3em;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #E6253A;
}

.footer-socials a {
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: middle;
}

.footer-socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.footer-socials a:hover img {
  filter: brightness(0) invert(36%) sepia(99%) saturate(7492%) hue-rotate(349deg) brightness(99%) contrast(101%);
}

@media (max-width: 900px) {
  .footer-content {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-col {
    min-width: 140px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.2rem;
    padding: 0 8vw;
  }
  .footer-col {
    max-width: 100%;
    min-width: 0;
  }
  .footer-logo {
    width: 70px;
  }
}
