.eq-orario * { box-sizing: border-box; }
.eq-orario { font-family: Helvetica, Arial, sans-serif; color: #232323; }

.eq-orario-desktop { display: none; }
.eq-orario-mobile { display: block; }

@media (min-width: 768px) {
  .eq-orario-desktop { display: block; }
  .eq-orario-mobile { display: none; }
}

.eq-table { width: 100%; border-collapse: collapse; table-layout: fixed; font-size: 15px; }
.eq-table th {
  font-family: 'IM Fell DW Pica', serif;
  font-weight: 400;
  text-transform: uppercase;
  padding: 12px 4px;
  border: 1px solid #e2e2e2;
  background: #fafafa;
  font-size: 19px;
}
.eq-table td.eq-day-cell {
  border: 1px solid #e2e2e2;
  position: relative;
  padding: 0;
  vertical-align: top;
}

.eq-slot {
  position: absolute;
  left: 4px;
  right: 4px;
  border-radius: 6px;
  padding: 8px 10px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: default;
}
.eq-slot:hover {
  transform: scale(1.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 5;
}
.eq-slot-title { font-family: Helvetica, Arial, sans-serif; font-weight: 700; font-size: 16px; line-height: 1.25; }
.eq-slot-time { font-family: Helvetica, Arial, sans-serif; font-size: 14px; margin-top: 3px; }
.eq-slot-note { font-family: Helvetica, Arial, sans-serif; font-size: 13px; margin-top: 3px; }

.eq-day-title {
  font-family: 'IM Fell DW Pica', serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  margin: 20px 0 8px;
}
.eq-day-title:first-child { margin-top: 0; }

.eq-mobile-card {
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 8px;
  min-height: 50px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.eq-mobile-card:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.eq-mobile-empty { font-family: Helvetica, Arial, sans-serif; font-size: 14px; color: #999; margin-bottom: 8px; }