@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #16305E;
  --navy-deep: #0E2144;
  --red: #D6252C;
  --red-deep: #B31A20;
  --paper: #F4F6FA;
  --card: #FFFFFF;
  --ink: #16202E;
  --ink-soft: #5B6B80;
  --line: #DEE4EE;
  --ok: #1E8A5B;
  --warn: #C88A1A;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(16, 32, 60, 0.06), 0 8px 24px rgba(16, 32, 60, 0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  margin: 0;
}

a { color: inherit; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 15px;
}

/* ---------- App shell ---------- */
.app {
  max-width: 960px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy) 60%);
  color: #fff;
  padding: 22px 20px 26px;
  position: relative;
  overflow: hidden;
}

.topbar::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 200px;
  height: 200px;
  background: var(--red);
  opacity: 0.18;
  border-radius: 40% 60% 55% 45%;
}

.topbar .greeting {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.topbar .subrole {
  margin-top: 4px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  position: relative;
  z-index: 1;
}

.topbar .logout {
  position: absolute;
  right: 20px;
  top: 24px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.topbar .logout:active { background: rgba(255,255,255,0.22); }

.content {
  flex: 1;
  padding: 18px 16px 96px;
}

/* ---------- Bottom tab nav (mobile) ---------- */
.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
  z-index: 40;
}

.tabbar button {
  flex: 1;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px 6px;
  color: var(--ink-soft);
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 10px;
}

.tabbar button.active { color: var(--navy); background: #EEF2FA; }
.tabbar button .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  position: relative;
  top: -14px; left: 12px;
  display: none;
}
.tabbar button.has-badge .dot { display: block; }

.tab-icon { font-size: 19px; line-height: 1; }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
}

.card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16.5px;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.card-sub {
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy-deep);
  margin: 6px 2px 12px;
}

/* ---------- Day tabs ---------- */
.day-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.day-tab {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.day-tab .day-num { font-family: 'Manrope', sans-serif; font-size: 20px; display: block; color: var(--navy); }
.day-tab.selected { border-color: var(--navy); background: #EEF2FA; color: var(--navy-deep); }
.day-tab.selected .day-num { color: var(--navy-deep); }
.day-tab.status-approved { border-color: var(--ok); }
.day-tab.status-pending { border-color: var(--warn); }
.day-tab.status-rejected { border-color: var(--red); }
.day-tab.status-not_on_duty { opacity: 0.55; }

/* ---------- Forms ---------- */
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fbfcfe;
  color: var(--ink);
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 14.5px;
  width: 100%;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:active { background: var(--navy-deep); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:active { background: var(--red-deep); }
.btn-outline { background: #fff; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-ghost { background: #EEF2FA; color: var(--navy-deep); }
.btn-sm { padding: 8px 12px; font-size: 13px; width: auto; }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

.btn-row { display: flex; gap: 10px; }
.btn-row .btn { flex: 1; }

/* ---------- Slot grid ---------- */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.slot-chip {
  padding: 12px 8px;
  text-align: center;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
}
.slot-chip.selected { border-color: var(--red); background: #FDEDEE; color: var(--red-deep); }
.slot-chip.disabled { opacity: 0.4; pointer-events: none; }

/* ---------- Search results ---------- */
.uik-result {
  padding: 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
}
.uik-result:active { background: #F4F6FA; }
.uik-result.selected { border-color: var(--navy); background: #EEF2FA; }
.uik-number { font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--navy-deep); font-size: 16px; }
.uik-institution { color: var(--ink-soft); font-size: 13.5px; margin-top: 2px; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.badge-pending { background: #FBF1DD; color: var(--warn); }
.badge-approved { background: #E4F5EC; color: var(--ok); }
.badge-rejected { background: #FBE7E8; color: var(--red-deep); }
.badge-not_on_duty { background: #EEF0F3; color: var(--ink-soft); }

/* ---------- Duty summary card ---------- */
.duty-day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.duty-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
}
.duty-detail-row:last-child { border-bottom: none; }
.duty-detail-row .label { color: var(--ink-soft); }
.duty-detail-row .value { font-weight: 600; text-align: right; }

.photo-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.photo-slot {
  width: 68px; height: 68px;
  border-radius: 10px;
  background: #EEF2FA;
  border: 1.5px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ink-soft);
  overflow: hidden;
  position: relative;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Login ---------- */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(circle at 20% 0%, #1c3b70 0%, var(--navy-deep) 55%, #081226 100%);
}
.login-card {
  background: #fff;
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  padding: 30px 26px 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.login-flag {
  display: flex;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.login-flag span { flex: 1; }
.login-flag span:nth-child(1) { background: var(--navy); }
.login-flag span:nth-child(2) { background: var(--red); }
.login-title { font-size: 21px; margin-bottom: 4px; }
.login-sub { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 22px; }
.login-error {
  background: #FBE7E8;
  color: var(--red-deep);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}
.login-hint { text-align: center; margin-top: 16px; font-size: 12px; color: var(--ink-soft); }

/* ---------- Admin tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 640px; }
table.data-table th {
  background: var(--navy);
  color: #fff;
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
  white-space: nowrap;
}
table.data-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:nth-child(even) td { background: #FAFBFD; }

.empty-state {
  text-align: center;
  padding: 40px 16px;
  color: var(--ink-soft);
}
.empty-state .icon { font-size: 34px; margin-bottom: 10px; }

.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep);
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-6px); }
.toast.error { background: var(--red-deep); }

.hidden { display: none !important; }

.spinner {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 3px solid rgba(22,48,94,0.15);
  border-top-color: var(--navy);
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,18,36,0.55);
  display: flex; align-items: flex-end;
  justify-content: center;
  z-index: 200;
}
.modal-sheet {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 18px 18px 0 0;
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
  max-height: 88vh;
  overflow-y: auto;
}

@media (min-width: 720px) {
  .modal-overlay { align-items: center; }
  .modal-sheet { border-radius: 18px; }
  .tabbar { border-radius: 0; }
}

/* Desktop-ish top nav for admin, still usable on mobile as scroll row */
.admin-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.admin-nav button {
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}
.admin-nav button.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.stat-box { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; text-align: center; }
.stat-box .num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy-deep); }
.stat-box .lbl { font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }

.filter-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.filter-row select, .filter-row input { flex: 1; min-width: 120px; padding: 9px 10px; border-radius: 10px; border: 1.5px solid var(--line); }


/* ============================================================
   VOLUNTEER UI — modern minimal redesign
   Scoped to .volunteer-page so admin/login stay untouched.
   ============================================================ */

.volunteer-page {
  --v-bg: #f7f8fa;
  --v-surface: #ffffff;
  --v-text: #111827;
  --v-muted: #6b7280;
  --v-border: #e7e9ee;
  --v-primary: #173b74;
  --v-primary-dark: #0f2d5c;
  --v-primary-soft: #edf3fb;
  --v-green: #16845a;
  --v-green-soft: #e9f7f0;
  --v-red: #c92b35;
  --v-red-soft: #fcecee;
  --v-amber: #a66a08;
  --v-amber-soft: #fff6df;
  --v-radius: 18px;
  --v-shadow: 0 1px 2px rgba(15, 23, 42, .03), 0 10px 30px rgba(15, 23, 42, .045);

  background: var(--v-bg);
  color: var(--v-text);
}

.volunteer-page .app {
  max-width: 760px;
  width: 100%;
}

.volunteer-page .topbar {
  background: var(--v-surface);
  color: var(--v-text);
  padding: 28px 22px 24px;
  border-bottom: 1px solid var(--v-border);
  overflow: visible;
}

.volunteer-page .topbar::after {
  display: none;
}

.volunteer-page .topbar .greeting {
  color: var(--v-text);
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.volunteer-page .topbar .subrole {
  margin-top: 7px;
  color: var(--v-muted);
  font-size: 13px;
}

.volunteer-page .topbar .logout {
  top: 25px;
  right: 20px;
  background: #f2f4f7;
  color: #4b5563;
  border: 1px solid var(--v-border);
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 700;
  transition: .18s ease;
}

.volunteer-page .topbar .logout:hover {
  background: #e9edf2;
  color: var(--v-text);
}

.volunteer-page .topbar .logout:active {
  transform: scale(.97);
}

.volunteer-page .content {
  padding: 26px 18px 112px;
}

.volunteer-page .section-title {
  font-size: 23px;
  letter-spacing: -.035em;
  margin: 0 2px 16px;
  color: var(--v-text);
}

.volunteer-page .card {
  background: var(--v-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius);
  box-shadow: var(--v-shadow);
  padding: 20px;
  margin-bottom: 14px;
}

.volunteer-page .card-title {
  color: var(--v-text);
  font-size: 16px;
  letter-spacing: -.02em;
}

.volunteer-page .card-sub {
  color: var(--v-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.volunteer-page .duty-day-header {
  min-height: 30px;
  margin-bottom: 14px;
}

.volunteer-page .duty-day-header .card-title {
  font-size: 16px;
  font-weight: 800;
}

.volunteer-page .badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .01em;
}

.volunteer-page .badge-pending {
  background: var(--v-amber-soft);
  color: var(--v-amber);
}

.volunteer-page .badge-approved {
  background: var(--v-green-soft);
  color: var(--v-green);
}

.volunteer-page .badge-rejected {
  background: var(--v-red-soft);
  color: var(--v-red);
}

.volunteer-page .badge-not_on_duty {
  background: #f0f1f3;
  color: #737985;
}

/* Day selector */
.volunteer-page .day-tabs {
  gap: 10px;
  margin-bottom: 18px;
}

.volunteer-page .day-tab {
  border: 1px solid var(--v-border);
  background: var(--v-surface);
  border-radius: 15px;
  padding: 12px 8px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .025);
  transition: .18s ease;
}

.volunteer-page .day-tab .day-num {
  color: var(--v-text);
  font-size: 21px;
}

.volunteer-page .day-tab.selected {
  background: var(--v-primary);
  border-color: var(--v-primary);
  color: white;
}

.volunteer-page .day-tab.selected .day-num {
  color: white;
}

/* Forms */
.volunteer-page .field {
  margin-bottom: 16px;
}

.volunteer-page .field label {
  color: #707783;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
}

.volunteer-page .field input,
.volunteer-page .field select {
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--v-border);
  border-radius: 13px;
  background: #fafbfc;
  color: var(--v-text);
  transition: border-color .18s, box-shadow .18s, background .18s;
}

.volunteer-page .field input::placeholder {
  color: #a1a7b0;
}

.volunteer-page .field input:focus,
.volunteer-page .field select:focus {
  border-color: #9db4d5;
  box-shadow: 0 0 0 4px rgba(23, 59, 116, .08);
  background: #fff;
}

/* Buttons */
.volunteer-page .btn {
  min-height: 46px;
  border-radius: 13px;
  padding: 12px 17px;
  font-size: 13.5px;
  font-weight: 800;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.volunteer-page .btn:hover {
  transform: translateY(-1px);
}

.volunteer-page .btn:active {
  transform: translateY(0) scale(.985);
}

.volunteer-page .btn-primary {
  background: var(--v-primary);
  box-shadow: 0 5px 14px rgba(23, 59, 116, .16);
}

.volunteer-page .btn-primary:hover {
  background: var(--v-primary-dark);
}

.volunteer-page .btn-red {
  background: var(--v-red);
  box-shadow: 0 5px 14px rgba(201, 43, 53, .14);
}

.volunteer-page .btn-outline {
  border: 1px solid #cfd5df;
  color: var(--v-text);
  background: #fff;
}

.volunteer-page .btn-outline:hover {
  background: #f7f8fa;
}

.volunteer-page .btn-ghost {
  background: var(--v-primary-soft);
  color: var(--v-primary);
}

/* "Не дежурить" */
.volunteer-page .not-duty-toggle {
  width: auto;
  min-height: 40px;
}

/* Time slots */
.volunteer-page .slot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.volunteer-page .slot-chip {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--v-border);
  border-radius: 13px;
  background: #fff;
  font-size: 13.5px;
  transition: .16s ease;
}

.volunteer-page .slot-chip:hover {
  border-color: #bdc8d8;
  background: #fafbfd;
}

.volunteer-page .slot-chip.selected {
  border-color: var(--v-primary);
  background: var(--v-primary-soft);
  color: var(--v-primary);
  box-shadow: inset 0 0 0 1px var(--v-primary);
}

/* Search results */
.volunteer-page .uik-results {
  margin-top: -6px;
  margin-bottom: 16px;
}

.volunteer-page .uik-result {
  position: relative;
  padding: 14px 15px;
  margin-bottom: 8px;
  border: 1px solid var(--v-border);
  border-radius: 14px;
  background: #fff;
  transition: .16s ease;
}

.volunteer-page .uik-result:hover {
  border-color: #c5cfdd;
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(15, 23, 42, .05);
}

.volunteer-page .uik-result.selected {
  border-color: #a9bddb;
  background: var(--v-primary-soft);
}

.volunteer-page .uik-number {
  color: var(--v-text);
  font-size: 15px;
  letter-spacing: -.015em;
}

.volunteer-page .uik-institution {
  color: var(--v-muted);
  font-size: 12.5px;
  line-height: 1.45;
  margin-top: 4px;
}

/* Duty details */
.volunteer-page .duty-detail-row {
  padding: 11px 0;
  border-bottom: 1px solid #f0f1f3;
  gap: 18px;
}

.volunteer-page .duty-detail-row .label {
  color: #8a919d;
  font-size: 12.5px;
}

.volunteer-page .duty-detail-row .value {
  color: var(--v-text);
  font-size: 13px;
  line-height: 1.4;
  max-width: 68%;
}

.volunteer-page .photo-thumbs {
  gap: 9px;
}

.volunteer-page .photo-slot {
  width: 76px;
  height: 76px;
  border: 1px dashed #d3d8df;
  border-radius: 13px;
  background: #f7f8fa;
}

/* Empty states */
.volunteer-page .empty-state {
  color: var(--v-muted);
  border-style: dashed;
  box-shadow: none;
}

.volunteer-page .empty-state .icon {
  font-size: 30px;
  margin-bottom: 12px;
}

/* Bottom navigation — floating modern dock */
.volunteer-page .tabbar {
  left: 50%;
  right: auto;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 520px);
  max-width: 520px;
  border: 1px solid rgba(226, 229, 235, .95);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 35px rgba(15, 23, 42, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 6px;
  gap: 4px;
}

.volunteer-page .tabbar button {
  position: relative;
  min-height: 54px;
  padding: 7px 5px;
  border-radius: 15px;
  color: #858b96;
  font-size: 11px;
  transition: .18s ease;
}

.volunteer-page .tabbar button.active {
  color: var(--v-primary);
  background: var(--v-primary-soft);
}

.volunteer-page .tab-icon {
  font-size: 17px;
  filter: grayscale(.15);
}

.volunteer-page .tabbar button.active .tab-icon {
  filter: none;
}

.volunteer-page .tabbar button .dot {
  width: 6px;
  height: 6px;
  top: 1px;
  left: calc(50% + 12px);
  background: var(--v-red);
}

/* Photo upload button */
.volunteer-page label.btn.btn-ghost {
  border-radius: 11px;
}

/* Rejection message */
.volunteer-page .login-error {
  background: var(--v-red-soft);
  color: #a9222d;
  border: 1px solid #f4d4d8;
  border-radius: 13px;
  line-height: 1.45;
}

/* Mobile polish */
@media (max-width: 560px) {
  .volunteer-page .topbar {
    padding: 23px 17px 21px;
  }

  .volunteer-page .topbar .greeting {
    font-size: 22px;
    padding-right: 82px;
  }

  .volunteer-page .topbar .logout {
    right: 15px;
    top: 20px;
    padding: 8px 11px;
  }

  .volunteer-page .content {
    padding: 21px 13px 105px;
  }

  .volunteer-page .section-title {
    font-size: 21px;
  }

  .volunteer-page .card {
    padding: 17px;
    border-radius: 16px;
  }

  .volunteer-page .slot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 700px) {
  .volunteer-page .content {
    padding-left: 28px;
    padding-right: 28px;
  }
}
