.site-footer {
  display: block;
  width: 100%;
  padding: 0;
  grid-template-columns: none;
  gap: 0;
  background: linear-gradient(135deg, #eefcf7 0%, #eef8ff 55%, #f5f1ff 100%);
  color: #596477;
  border-top: 1px solid #dcebef;
}

.footer-inner {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
  padding: 48px 0 36px;
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) repeat(3, minmax(170px, 1fr));
  gap: 42px;
  align-items: start;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand {
  padding-right: 0;
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
  color: #17142f;
  text-decoration: none;
}

.footer-logo img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 72px;
  object-fit: contain;
}

.footer-logo .logo {
  display: block;
  color: #17142f;
}

.footer-brand p {
  max-width: 300px;
  margin: 0;
  color: #66717e;
  font-size: 13px;
  line-height: 1.6;
}

.footer-column-title {
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 4px solid #21a9e8;
  color: #0783bf;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #66717e;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.footer-links a:hover {
  color: #078bd0;
}

.footer-contact-links a {
  gap: 9px;
}

.footer-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 5px;
  background: #d9f2fb;
  color: #0783bf;
  font-size: 11px;
  font-weight: 800;
}

.footer-contact-icon[src] {
  object-fit: contain;
  background: transparent;
}

.footer-bottom {
  display: block;
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
  padding: 20px 0 24px;
  border-top: 1px solid #d5e4e8;
  text-align: center;
  color: #7b8490;
  font-size: 13px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .footer-inner {
    width: min(calc(100% - 28px), 1180px);
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }

  .footer-bottom {
    width: min(calc(100% - 28px), 1180px);
  }

  .footer-logo img {
    max-width: 160px;
  }
}
