.hour-cnt {
  max-width: 320px;
  margin: 1.5rem auto;
  padding: 1rem 1.25rem;
  background: var(--box-bg);
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hour-cnt:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.hour-cnt h3 {
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}

.hour-cnt h6 {
  margin: 0.25rem 0;
  font-weight: 500;
}

.hour-cnt i {
  display: block;
  margin-top: 0.5rem;
  opacity: 0.8;
  font-size: 0.85em;
}

@media (max-width: 600px) {
  .hour-cnt {
    max-width: 95%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.5rem;
  }

  .hour-cnt h3 {
    font-size: 1rem;
  }

  .hour-cnt h6 {
    font-size: 0.78rem;
  }

  .hour-cnt i {
    font-size: 0.75rem;
  }
}