.site-footer {
  background: var(--color-hf);
  color: var(--color-hf-text);
  box-shadow: 0 -2px 8px rgba(0,0,0,.06);
  padding: 24px 0;
}

/* === DESKTOP === */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 20px;
}

/* === LEVÁ ČÁST – TEXT === */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-left .rights {
  margin: 0;
  font: 400 15px/1.4 'Lato', system-ui, sans-serif;
}
.footer-left .credit {
  margin: 0;
  font: 400 13px/1.4 'Lato', system-ui, sans-serif;
  opacity: 0.9;
}

/* === PRAVÁ ČÁST – IKONY === */
.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--color-hf-text);
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-social-link svg {
  width: 40px;
  height: 40px;
}

.footer-social-link:hover {
  transform: scale(1.2);
  color: #EBDDCB;
}

/* === MOBILE (≤767px) === */
@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 16px;
  }

  /* Řádek s ikonami nahoře */
  .footer-social {
    order: 1;
    justify-content: center;
    gap: 24px;
  }

  .footer-social-link {
    width: 50px;
    height: 50px;
  }

  .footer-social-link svg {
    width: 34px;
    height: 34px;
  }

  /* Text pod ikonami */
  .footer-left {
    order: 2;
    align-items: center;
    margin-top: 8px;
  }

  .footer-left .rights {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .footer-left .credit {
    font-size: 11px;
    opacity: 0.9;
  }
}

/* Skrytý nadpis pro čtečky */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}














































