/* Общий фон на всю ширину */
.exsumo-footer {
  background-color: #232730;
  color: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 30px 20px;
  font-family: sans-serif;
  font-size: 14px;
}

/* Контейнер по центру */
.exsumo-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Верхняя часть футера */
.exsumo-footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 15px;
}

.exsumo-footer-left a,
.exsumo-footer-right a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.exsumo-footer-left a:hover,
.exsumo-footer-right a:hover {
  color: #999;
}

.exsumo-footer-right img {
  height: 28px;
  width: 28px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Нижняя часть футера */
.exsumo-footer-bottom {
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 12px;
  color: #ccc;
}

.exsumo-footer-bottom a {
  color: #ccc;
  text-decoration: underline;
}

html, body {
  height: 100%;
  margin: 0;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.exsumo-footer {
  margin-top: auto;
}

.exsumo-footer-left span {
  margin-right: 20px; /* можно увеличить или уменьшить по вкусу */
}

.exsumo-footer-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px; /* ← вот это расстояние между ссылками */
}

@media (max-width: 768px) {
  .exsumo-footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .exsumo-footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 5px;
  }

  .exsumo-footer-left span {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 16px;
  }

  .exsumo-footer-left a {
    font-size: 14px;
    line-height: 1.4;
    padding: 4px 0;
  }

  .exsumo-footer-bottom {
    font-size: 12px;
    line-height: 1.6;
    padding-left: 5px;
  }
}
