/* School Status Check — PWA styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-light:  #eff6ff;
  --accent:      #f97316;
  --accent-dark: #ea6c0a;

  /* Status */
  --red:         #dc2626;
  --red-light:   #fef2f2;
  --yellow:      #d97706;
  --yellow-light:#fffbeb;
  --green:       #16a34a;
  --green-light: #f0fdf4;
  --pink:        #be185d;
  --pink-light:  #fdf2f8;

  /* Neutrals */
  --ink:         #0f172a;
  --gray-500:    #64748b;
  --gray-400:    #94a3b8;
  --gray-200:    #e2e8f0;
  --gray-100:    #f1f5f9;
  --surface:     #f8fafc;
  --white:       #ffffff;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shape */
  --radius:    0.5rem;
  --radius-lg: 0.75rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow:    0 1px 4px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
}

/* ─── Base ─────────────────────────────────────────────── */
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--surface);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ─── Top navigation ───────────────────────────────────── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: var(--shadow-sm);
}
.nav-brand { display: flex; flex-direction: column; gap: 0; }
.nav-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.nav-subtitle {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-top: 0.1rem;
}
.nav-actions { display: flex; gap: 0.75rem; align-items: center; }
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  color: var(--gray-500);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-icon-btn:hover { background: var(--gray-100); color: var(--ink); }
.nav-icon-btn i { font-size: 1.2rem; }

/* Back link for secondary pages */
.nav-back {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-back i { font-size: 1rem; }

/* ─── Tab bar ──────────────────────────────────────────── */
.tab-bar {
  display: flex;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 1rem 0.45rem;
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  min-width: 56px;
}
.tab-bar a i { font-size: 1.25rem; transition: color 0.15s; }
.tab-bar a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.tab-bar a:hover:not(.active) { color: var(--gray-500); }

/* ─── Main content ─────────────────────────────────────── */
main { max-width: 640px; margin: 0 auto; padding: 1rem; }

/* ─── Section headers ──────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
}
.section-header:first-child { margin-top: 0; }
.section-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}
.section-title i { font-size: 1rem; }
.section-link {
  font-size: 0.8rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.section-link:hover { text-decoration: underline; }

/* ─── Cards ────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1rem;
  margin-bottom: 0.625rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

/* Priority left accent bar */
.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.card-high::before   { background: var(--red); }
.card-medium::before { background: var(--yellow); }
.card-low::before    { background: var(--green); }
.card-health::before { background: var(--pink); }
.card-boosted::before { background: var(--blue); }
.card-neutral::before { background: transparent; }

.card-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.35;
}
.card-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}
.card-body {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-top: 0.4rem;
}

/* Collapsible card */
.card-collapsible { cursor: pointer; }
.card-collapsible .card-expandable { display: none; }
.card-collapsible.expanded .card-expandable { display: block; }
.card-chevron {
  color: var(--gray-400);
  transition: transform 0.2s;
  flex-shrink: 0;
  font-size: 0.9rem;
  line-height: 1;
}
.card-collapsible.expanded .card-chevron { transform: rotate(180deg); }

/* Deadline row */
.deadline {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
}
.deadline i { font-size: 0.9rem; }
.deadline.urgent { color: var(--red); font-weight: 500; }

/* Classroom tag */
.classroom-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}
.classroom-tag i { font-size: 0.85rem; }

/* ─── Badges ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge-high   { background: var(--red-light);    color: var(--red); }
.badge-medium { background: var(--yellow-light);  color: var(--yellow); }
.badge-low    { background: var(--green-light);   color: var(--green); }
.badge-health { background: var(--pink-light);    color: var(--pink); }
.badge-boosted { background: var(--blue-light);   color: var(--blue); }

/* ─── Alert actions ────────────────────────────────────── */
.alert-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

/* ─── Swipe container ──────────────────────────────────── */
.swipe-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 0.625rem;
}
.swipe-card {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  border-radius: var(--radius-lg);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s;
  will-change: transform;
  touch-action: pan-y;
}
.swipe-card.is-swiping { transition: none; }
.swipe-card.animate-out-left {
  transform: translateX(-110%) !important;
  opacity: 0;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}
.swipe-card.animate-out-right {
  transform: translateX(110%) !important;
  opacity: 0;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}

/* Swipe reveal layers */
.swipe-dismiss-bg,
.swipe-boost-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.15s;
}
.swipe-dismiss-bg {
  background: var(--red-light);
  color: var(--red);
  justify-content: flex-start;
}
.swipe-boost-bg {
  background: var(--green-light);
  color: var(--green);
  justify-content: flex-end;
}
.swipe-dismiss-bg i, .swipe-boost-bg i { font-size: 1.2rem; margin: 0 0.3rem; }

/* Swipe hint */
.swipe-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  padding: 0.25rem 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.swipe-hint i { font-size: 0.9rem; }

/* ─── Filter pills ─────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  transition: all 0.15s;
  font-family: var(--font);
}
.filter-pill:hover { border-color: var(--blue); color: var(--blue); }
.filter-pill.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: background 0.15s, box-shadow 0.15s;
  text-decoration: none;
  line-height: 1;
}
.btn i { font-size: 1rem; }
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(249,115,22,0.35);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(37,99,235,0.3);
}
.btn-blue:hover { background: var(--blue-dark); }
.btn-ghost {
  background: transparent;
  color: var(--gray-500);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { background: var(--gray-100); color: var(--ink); }
.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: #b91c1c; }
.btn-sm { padding: 0.3rem 0.75rem; font-size: 0.8rem; }
.btn-icon { padding: 0.4rem; }

/* ─── Status tile (closures / dashboard) ───────────────── */
.status-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.125rem;
  margin-bottom: 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.status-tile-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.status-tile-icon.open   { background: var(--green-light);  color: var(--green); }
.status-tile-icon.closed { background: var(--red-light);    color: var(--red); }
.status-tile-icon.break  { background: var(--yellow-light); color: var(--yellow); }
.status-tile-body { flex: 1; min-width: 0; }
.status-tile-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-400);
  margin-bottom: 0.1rem;
}
.status-tile-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.status-tile-sub {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.status-open   { color: var(--green); }
.status-closed { color: var(--red); }
.status-break  { color: var(--yellow); }

/* ─── Closure dot (closures list) ──────────────────────── */
.closure-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ─── Compact closure row (dashboard) ──────────────────── */
.closure-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.closure-row:last-child { border-bottom: none; }
.closure-row-date {
  min-width: 2.5rem;
  text-align: center;
}
.closure-row-day {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.closure-row-month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-top: 0.1rem;
}
.closure-row-reason {
  font-size: 0.85rem;
  color: var(--gray-500);
  flex: 1;
}

/* ─── Links list ────────────────────────────────────────── */
.links-list { list-style: none; margin-top: 0.5rem; }
.links-list li { margin-bottom: 0.25rem; }
.links-list a {
  color: var(--blue);
  font-size: 0.8rem;
  word-break: break-all;
  text-decoration: none;
}
.links-list a:hover { text-decoration: underline; }

/* ─── Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
input[type=text], input[type=email], input[type=number], select, textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.field-hint {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

/* ─── Toast ─────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 1.25rem; right: 1rem; z-index: 100; }
.toast {
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  animation: slide-in 0.2s ease;
  max-width: 280px;
  box-shadow: var(--shadow-md);
}
.toast.success { background: var(--green); }
.toast.error   { background: var(--red); }
@keyframes slide-in {
  from { transform: translateY(0.5rem); opacity: 0; }
  to   { transform: translateY(0);      opacity: 1; }
}

/* ─── Empty state ───────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-400);
}
.empty-state i { font-size: 2.5rem; opacity: 0.5; }
.empty-state p { margin-top: 0.75rem; font-size: 0.9rem; }

/* ─── Spinner ───────────────────────────────────────────── */
.spinner {
  width: 1.75rem; height: 1.75rem;
  border: 2.5px solid var(--gray-200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 2.5rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Login / onboarding ─────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--surface);
}
.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.login-brand { margin-bottom: 1.75rem; }
.login-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.login-subtitle {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.2rem;
  line-height: 1.4;
}
.login-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

/* ─── Snooze modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 50;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-sheet {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.modal-sheet h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}

/* ─── Settings / admin sections ─────────────────────────── */
.settings-section { margin-bottom: 0.5rem; }
.settings-section-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-400);
  padding: 0.75rem 0 0.35rem;
}

/* ─── iOS push note ─────────────────────────────────────── */
.ios-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  padding: 0.625rem 0.75rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  line-height: 1.5;
}
.ios-note i { flex-shrink: 0; font-size: 1rem; margin-top: 0.1rem; }

/* ─── Swipe tutorial overlay ─────────────────────────────── */
.swipe-tutorial {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(2px);
  animation: fade-in 0.25s ease;
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
.swipe-tutorial-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.35rem;
  text-align: center;
}
.swipe-tutorial-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 2rem;
}
.swipe-tutorial-demo {
  width: 100%;
  max-width: 340px;
  position: relative;
  height: 5.5rem;
  margin-bottom: 2rem;
}
/* The demo card itself */
.swipe-tutorial-card {
  position: absolute;
  inset: 0;
  background: white;
  border-radius: var(--radius-lg);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  will-change: transform;
}
.swipe-tutorial-card-text {
  flex: 1;
}
.swipe-tutorial-card-text .card-title { font-size: 0.875rem; }
.swipe-tutorial-card-text .card-meta  { font-size: 0.75rem; margin-top: 0.15rem; }
/* Dismiss layer (left) */
.swipe-tutorial-dismiss {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--red-light);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  gap: 0.4rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
}
/* Boost layer (right) */
.swipe-tutorial-boost {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.25rem;
  gap: 0.4rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
}
/* Labels row */
.swipe-tutorial-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 340px;
  margin-bottom: 2rem;
}
.swipe-tutorial-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.swipe-tutorial-label i { font-size: 1rem; }
.swipe-tutorial-label.dismiss { color: #fca5a5; }
.swipe-tutorial-label.boost   { color: #86efac; }

/* ─── Notification preference toggles ───────────────────── */
.notif-pref-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.notif-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.notif-pref-row:last-child { border-bottom: none; }
.notif-pref-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}
.notif-pref-label i { font-size: 1.1rem; color: var(--gray-400); }
.notif-pref-desc {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.1rem;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 2.5rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle input:checked + .toggle-track { background: var(--blue); }
.toggle-track::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: white;
  top: 0.2rem;
  left: 0.2rem;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle-track::after {
  transform: translateX(1.1rem);
}

/* Push test panel */
.push-test-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}
.push-test-select {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.push-test-select select {
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.875rem;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (min-width: 480px) {
  .tab-bar a { padding: 0.55rem 1.25rem 0.5rem; }
}
