/* Site-wide footer */
.site-footer {
  margin-top: auto;
  padding: 32px var(--space-page) 40px;
  background: var(--color-footer-bg);
  color: var(--color-white);
}

.site-footer__responsible {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.site-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--color-white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  line-height: 1;
}

.site-footer__stop {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: 1.3;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .site-footer__links {
    flex-direction: row;
    column-gap: 24px;
    row-gap: 12px;
  }
}

.site-footer__link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  line-height: 1.3;
}

.site-footer__link:hover {
  opacity: 0.85;
}

.site-footer__copy {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
}
