/* ===== HERO ===== */
.hours-hero {
  padding: 7rem 0 3.5rem;
  text-align: center;
}

.hours-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hours-hero__subtitle {
  font-size: 1.125rem;
  opacity: 0.7;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hours-hero__link { font-weight: 600; text-decoration: underline; }

.hours-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.hours-section { padding: 4rem 0; }

.hours-section--alt {
  background: rgba(11,30,102,0.025);
}

[data-theme="dark"] .hours-section--alt {
  background: rgba(255,255,255,0.02);
}

/* ===== HOURS TABLE ===== */
.hours-table-wrap {
  margin-top: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}

[data-theme="dark"] .hours-table-wrap {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.hours-table thead tr {
  background: rgba(11,30,102,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

[data-theme="dark"] .hours-table thead tr {
  background: rgba(182,255,46,0.06);
  border-color: rgba(255,255,255,0.07);
}

.hours-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

.hours-row th,
.hours-row td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  vertical-align: middle;
}

[data-theme="dark"] .hours-row th,
[data-theme="dark"] .hours-row td {
  border-color: rgba(255,255,255,0.05);
}

.hours-row:last-child th,
.hours-row:last-child td { border-bottom: none; }

.hours-row th { font-weight: 600; }

.hours-row--closed { opacity: 0.45; }

/* Status badges */
.hours-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hours-badge--open {
  background: rgba(34,197,94,0.12);
  color: #15803d;
}

[data-theme="dark"] .hours-badge--open {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
}

.hours-badge--limited {
  background: rgba(234,179,8,0.12);
  color: #a16207;
}

[data-theme="dark"] .hours-badge--limited {
  background: rgba(234,179,8,0.12);
  color: #facc15;
}

.hours-badge--closed {
  background: rgba(0,0,0,0.06);
  color: inherit;
  opacity: 0.5;
}

[data-theme="dark"] .hours-badge--closed {
  background: rgba(255,255,255,0.06);
}

/* Note below table */
.hours-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  opacity: 0.65;
}

.hours-note svg { width: 16px; height: 16px; flex-shrink: 0; }
.hours-note a { font-weight: 600; text-decoration: underline; }

/* ===== INFO CARDS ===== */
.hours-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hours-info-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}

[data-theme="dark"] .hours-info-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}

.hours-info-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(11,30,102,0.08);
  display: grid;
  place-items: center;
  color: #0B1E66;
  margin-bottom: 1rem;
}

[data-theme="dark"] .hours-info-card__icon {
  background: rgba(182,255,46,0.1);
  color: #B6FF2E;
}

.hours-info-card__icon svg { width: 20px; height: 20px; }

.hours-info-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.hours-info-card p {
  font-size: 0.875rem;
  opacity: 0.65;
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hours-hero {
    padding: 4.25rem 0 2.25rem;
    text-align: left;
  }

  .hours-hero__title {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .hours-hero__subtitle {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hours-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hours-section {
    padding: 3rem 0;
  }

  .hours-table-wrap {
    border-radius: 14px;
  }

  .hours-table th,
  .hours-row th,
  .hours-row td {
    padding: 0.875rem 1rem;
  }

  .hours-table th:last-child,
  .hours-row td:last-child { display: none; }

  .hours-info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hours-note {
    align-items: flex-start;
  }
}
