/* footer.css — čisté a krátké, namespacované */
.site-footer {
  --blue-700: #1f3f8f;         /* klíčová modrá (můžeš doladit) */
  --blue-650: #23489f;
  --white:    #ffffff;
  --muted:    #c9d3ea;         /* světle šedý text (sociální ikony) */
  --divider:  rgba(255,255,255,.15);

  background: var(--blue-700);
  color: var(--white);
  font: 15px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* Rozvržení horní části: vlevo brand, vpravo 3 sloupce */
.site-footer .footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 24px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
}

.site-footer .footer-brand { display: grid; gap: 16px; }
.site-footer .footer-logo img { display:block; height:auto; }

.site-footer .footer-claim { margin: 0; max-width: 52ch; }

/* Odznaky – bez rámečků, jen prostor okolo */
.site-footer .footer-badges { display:flex; gap: 16px; flex-wrap: wrap; }
.site-footer .footer-badges img { display:block; width:96px; height:96px; }

/* Sociální ikony – jen šedé symboly bez boxu */
.site-footer .footer-social{ display:flex; gap:16px; margin:12px 0 0; padding:0; list-style:none; }
.site-footer .footer-social a{ display:inline-flex; width:28px; height:28px; align-items:center; justify-content:center; }
.site-footer .footer-social svg{ fill:#abb8c3; transition:fill .2s ease; }
.site-footer .footer-social a:hover svg{ fill:#ffffff; }


/* Pravé tři sloupce */
.site-footer .footer-columns {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 28px 32px;
}
.site-footer .footer-col { display:grid; gap:10px; }

/* Nadpisy jako na wedos.zone – versálky, větší váha */
.site-footer .footer-heading {
  margin: 0 0 8px 0;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.site-footer .footer-subheading {
  margin: 12px 0 0;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
  opacity: .95;
}

.site-footer .footer-links { margin:0; padding:0; list-style:none; display:grid; gap:8px; }
.site-footer .footer-links li span { opacity:.85; }
.site-footer .footer-address { font-style: normal; display:grid; gap:4px; }

/* Spodní lišta */
.site-footer .footer-bottom {
  border-top: 1px solid var(--divider);
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 28px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}
.site-footer .footer-bottom p { margin: 0; }

/* Responsivita */
@media (max-width: 1024px) {
  .site-footer .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .footer-columns { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .site-footer .footer-columns { grid-template-columns: 1fr; }
  .site-footer .footer-badges img { width:84px; }
}

.site-footer .flag{
  width: 18px;
  height: 18px;
  vertical-align: -3px;   /* srovná baseline s textem */
  margin-right: 8px;
}