.footer {
  width: 100%;
  height: 40px;
  background: #000;
  color: #fff;
}

.footer .content-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

.footer-clocks {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-clock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.clock-city {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  opacity: 0.5;
}

.clock-time {
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
}

@media (max-width: 767px) {
  .footer-clocks {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
  }
}
