/* EDUHUNT V2.1.22 — CLICKABLE EXAM SCHEDULE SUMMARY CARDS — UI ONLY */
.schedule-kpi-card{
  width:100%;
  appearance:none;
  -webkit-appearance:none;
  font:inherit;
  text-align:left;
  cursor:pointer;
  transition:transform .14s ease,border-color .14s ease,box-shadow .14s ease;
}
.schedule-kpi-card:hover,
.schedule-kpi-card:focus-visible{
  transform:translateY(-2px);
  border-color:var(--kpi-color)!important;
  box-shadow:0 10px 24px color-mix(in srgb,var(--kpi-color) 16%,transparent);
  outline:none;
}
.schedule-kpi-card.is-active{
  border:2px solid var(--kpi-color)!important;
  box-shadow:0 0 0 3px color-mix(in srgb,var(--kpi-color) 12%,transparent),0 8px 22px rgba(15,23,42,.08);
}
.schedule-kpi-open{
  position:relative;
  z-index:2;
  margin-left:auto;
  padding:4px 8px;
  border-radius:999px;
  background:var(--kpi-soft);
  color:var(--kpi-color)!important;
  font-size:10px!important;
  font-weight:900!important;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.schedule-active-view{
  margin:0 0 12px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-left:4px solid var(--brand);
  border-radius:9px;
  background:var(--surface-soft,#f8fbff);
  color:var(--ink-700,#334155);
  font-weight:700;
}
.schedule-active-view b{color:var(--ink-950,#0f172a)}
@media(max-width:1024px){
  .schedule-summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:9px!important}
  .schedule-kpi-card{min-height:112px!important;padding:13px!important}
  .schedule-kpi-card b{font-size:24px!important}
  .schedule-kpi-open{font-size:9px!important;padding:3px 6px}
  .schedule-active-view{margin-bottom:10px;padding:9px 10px;font-size:12px}
}
@media(max-width:480px){
  .schedule-summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .schedule-kpi-card{min-height:104px!important}
}
