/* 0) Resetea márgenes del navegador */
html, body {
  margin: 0;
  padding: 0;
}

/* 1) Relojes */
.world-clocks {
  /* full-bleed */
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;

  /* tu estilo original */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #003d73;

  /* sin separación abajo */
  margin-bottom: 0;
}

.clock-box {
  background-color: rgba(255, 255, 255, 0.1);
  width: 200px;          /* Ajusta el ancho */
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  position: relative;
  color: #fff;
}
.clock-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.clock-box .date,
.clock-box .time {
  font-size: 20px;
  margin: 5px 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .clock-box {
    width: 160px;
    padding: 15px;
  }
  .clock-box h3 {
    font-size: 16px;
  }
  .clock-box .date,
  .clock-box .time {
    font-size: 18px;
  }
}
