.site-footer {
  background: #0f1114;
  color: #fff;
  padding: 24px 0;
}

.site-footer .site-footer-inner {
  display: grid;
  grid-template-columns: 138px 1px minmax(250px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.site-footer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-footer-logo {
  display: block;
  width: 138px;
  height: auto;
  border-radius: 8px;
}

.site-footer-main-divider {
  width: 1px;
  height: 74px;
  background: #d71919;
}

.site-footer-message strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.site-footer-message strong span {
  color: #d71919;
  padding: 0 8px;
}

.site-footer-message p {
  margin: 0;
  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.45;
}

.site-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  white-space: nowrap;
}

.site-footer-links a {
  color: #e1e1e1;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #d71919;
  text-underline-offset: 4px;
}

.site-footer-links > span {
  flex: 0 0 1px;
  width: 1px;
  height: 18px;
  background: #d71919;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 30px 0;
  }

  .site-footer .site-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }

  .site-footer-logo-wrap {
    justify-content: center;
  }

  .site-footer-logo {
    width: 124px;
  }

  .site-footer-main-divider {
    width: 58px;
    height: 1px;
  }

  .site-footer-message strong {
    font-size: 17px;
  }

  .site-footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 11px;
    white-space: normal;
  }

  .site-footer-links a {
    font-size: 13px;
  }
}
