/**
 * NEET state-wise cut-off — additions on top of cut-off.css.
 *
 * Reuses the .cutoff-page design system (hero, cards, tables, CTA). Only the
 * state-listing grid, state cards and the Cut-Off/Fees tabs are new, all
 * scoped under .npcut so they cannot leak into other pages.
 */

/* ---------- State listing grid ---------- */
.npcut .npcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.npcut .npcut-state-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--cutoff-border, #e6e8ef);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.npcut .npcut-state-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 30, 80, .10);
  border-color: var(--cutoff-primary, #2b59ff);
}

.npcut .npcut-state-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.npcut .npcut-state-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(43, 89, 255, .10);
  color: var(--cutoff-primary, #2b59ff);
  font-size: 15px;
  flex: none;
}

.npcut .npcut-state-name {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
}

.npcut .npcut-state-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.npcut .npcut-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.4;
}

.npcut .npcut-chip.cutoff { background: rgba(43, 89, 255, .10); color: #2b59ff; }
.npcut .npcut-chip.fees   { background: rgba(16, 160, 110, .12); color: #0c8f5f; }
.npcut .npcut-chip.soon   { background: rgba(120, 120, 130, .12); color: #6b6f7a; }

.npcut .npcut-state-go {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--cutoff-primary, #2b59ff);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Cut-Off / Fees tabs ---------- */
.npcut .npcut-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(20, 30, 80, .05);
  margin-bottom: 22px;
}

.npcut .npcut-tab {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 9px;
  background: transparent;
  color: #4a4f5c;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}

.npcut .npcut-tab.is-active {
  background: #fff;
  color: var(--cutoff-primary, #2b59ff);
  box-shadow: 0 4px 12px rgba(20, 30, 80, .10);
}

/* ---------- Tab panels ---------- */
.npcut .npcut-panel { display: none; }
.npcut .npcut-panel.is-active { display: block; }

/* ---------- Blank-state placeholder + back link ---------- */
.npcut .npcut-empty { text-align: center; }
.npcut .npcut-empty .predict-cta {
  justify-content: center;
  margin-top: 18px;
}

.npcut .npcut-back {
  margin-top: 26px;
}

.npcut .npcut-back a {
  font-weight: 600;
  font-size: 14px;
  color: var(--cutoff-primary, #2b59ff);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 480px) {
  .npcut .npcut-grid { grid-template-columns: 1fr 1fr; }
  .npcut .npcut-state-name { font-size: 15px; }
}
