/* --- Rýchly kontakt v pätičke --- */
.d-flex.footer-quick-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 28px 15px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  box-sizing: border-box;
}

.footer-quick-contact__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-quick-contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222222;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.footer-quick-contact__item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.footer-quick-contact__item a {
  color: inherit;
  text-decoration: none;
}

.footer-quick-contact__item a:hover {
  text-decoration: underline;
}

.footer-quick-contact__hours {
  color: #222222;
}

@media (max-width: 767px) {
  .d-flex.footer-quick-contact {
    padding: 22px 15px;
  }

  .footer-quick-contact__inner {
    flex-direction: column;
    gap: 14px;
  }

  .footer-quick-contact__item {
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}