.twobo-footer {
  --twobo-footer-navy: #07142f;
  --twobo-footer-blue: #0038ff;
  --twobo-footer-gold: #caa35c;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--twobo-footer-navy);
  color: rgba(255,255,255,.82);
  box-sizing: border-box;
}
.twobo-footer *, .twobo-footer *::before, .twobo-footer *::after { box-sizing: border-box; }
.twobo-footer__inner {
  width: min(100% - 64px, 1420px);
  margin: 0 auto;
  padding: 34px 0 30px;
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) minmax(180px, .9fr) minmax(220px, 1.05fr) minmax(150px, .8fr);
  column-gap: clamp(48px, 6vw, 96px);
  row-gap: 34px;
  align-items: start;
}
.twobo-footer__brand img { width: min(100%, 310px); height: auto; display: block; filter: brightness(0) invert(1); }
.twobo-footer__brand p { max-width: 290px; margin: 14px 0 0; color: rgba(255,255,255,.62); font: 400 15px/1.6 Arial,sans-serif; }
.twobo-footer h3 { margin: 3px 0 18px; color: var(--twobo-footer-gold); font: 700 12px/1.2 Arial,sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.twobo-footer ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 24px; }
.twobo-footer li { margin: 0 0 9px; break-inside: avoid; }
.twobo-footer a, .twobo-footer__contact span { color: rgba(255,255,255,.82); text-decoration: none; font: 400 14px/1.45 Arial,sans-serif; transition: color .2s ease; }
.twobo-footer a:hover, .twobo-footer a:focus-visible { color: #fff; }
.twobo-footer__contact { display: flex; flex-direction: column; gap: 9px; }
.twobo-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.twobo-footer__socials a { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(202,163,92,.62); border-radius: 50%; color: var(--twobo-footer-gold); font-weight: 700; }
.twobo-footer__socials a:hover, .twobo-footer__socials a:focus-visible { background: var(--twobo-footer-blue); border-color: var(--twobo-footer-blue); color: #fff; }
.twobo-footer__bottom { width: min(100% - 64px, 1420px); margin: 0 auto; padding: 18px 0 20px; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.48); font: 400 12px/1.4 Arial,sans-serif; }
@media (max-width: 900px) {
  .twobo-footer__inner { grid-template-columns: 1.3fr 1fr; column-gap: 48px; }
}
@media (max-width: 620px) {
  .twobo-footer__inner { width: min(100% - 36px, 1280px); grid-template-columns: 1fr; gap: 28px; padding: 38px 0 26px; }
  .twobo-footer ul { columns: 1; }
  .twobo-footer__bottom { width: min(100% - 36px, 1280px); flex-direction: column; gap: 6px; }
}

/* 3.9.3 – finální viditelnost ikon a odkazy bez podtržení */
.twobo-footer a,
.twobo-footer a:link,
.twobo-footer a:visited,
.twobo-footer a:hover,
.twobo-footer a:focus,
.twobo-footer a:active {
  text-decoration: none !important;
  text-decoration-line: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
.twobo-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
}
.twobo-footer__socials .twobo-footer__social {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(202,163,92,.85);
  border-radius: 50%;
  color: var(--twobo-footer-gold);
  background: transparent;
  text-decoration: none !important;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.twobo-footer__socials .twobo-footer__social svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}
.twobo-footer__socials a.twobo-footer__social:hover,
.twobo-footer__socials a.twobo-footer__social:focus-visible {
  background: var(--twobo-footer-blue);
  border-color: var(--twobo-footer-blue);
  color: #fff;
  transform: translateY(-2px);
}
.twobo-footer__socials .twobo-footer__social.is-disabled {
  opacity: .72;
  cursor: default;
}
