.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px 22px;
  color: #e8f2f0;
  background:
    radial-gradient(circle at 92% 50%, rgba(106, 191, 185, .24), transparent 14rem),
    linear-gradient(125deg, #102d3a, #185864);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(16, 50, 60, .16);
  font-size: .86rem;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer .footer-links a {
  padding: 8px 13px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  background: rgba(255, 255, 255, .22);
}

.site-footer #googlePageCounter {
  width: auto;
  min-width: 128px;
  padding: 8px 12px;
  color: #d8ebe8;
  background: rgba(6, 31, 39, .3);
  border-radius: 9px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

@media (max-width: 760px) {
  .site-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 18px;
  }

  .site-footer .footer-links a {
    flex: 1;
    text-align: center;
  }

  .site-footer #googlePageCounter {
    width: 100%;
    text-align: center;
  }
}
