/* =====================================================
   e-Nabız Sağlık Takip — Ana Stil Dosyası
   Sidebar: #1a2744 | Accent: #3b82f6
   ===================================================== */

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

:root {
  --sidebar-w: 240px;
  --sidebar-bg: #1a2744;
  --sidebar-text: #c8d6f0;
  --sidebar-active: #3b82f6;
  --accent: #3b82f6;
  --green: #10b981;
  --red: #ef4444;
  --amber: #f59e0b;
  --orange: #f97316;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --bg: #f1f5f9;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #1e293b;
  --muted: #64748b;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
}

html { font-size: 15px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* =========== SIDEBAR =========== */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.sidebar-logo {
  background: rgba(59,130,246,.2);
  border-radius: 8px;
  padding: 6px;
  color: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.sidebar-title { display: flex; flex-direction: column; }
.sidebar-app { color: #fff; font-weight: 700; font-size: .95rem; line-height: 1.2; }
.sidebar-sub { color: var(--sidebar-text); font-size: .72rem; }

.sidebar-nav { flex: 1; padding: 12px 8px; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: .875rem;
  transition: background .15s, color .15s;
  margin-bottom: 2px;
}

.nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.nav-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-item.active { background: var(--accent); color: #fff; font-weight: 600; }

.sidebar-footer {
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sidebar-user { display: flex; align-items: center; gap: 8px; }

.user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
}

.user-name { color: #fff; font-size: .82rem; font-weight: 600; }
.user-role { color: var(--sidebar-text); font-size: .72rem; }

.logout-btn {
  color: var(--sidebar-text);
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.logout-btn:hover { background: rgba(239,68,68,.2); color: var(--red); }

/* =========== MAIN CONTENT =========== */
.main-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

.page-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px;
  position: sticky; top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.page-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.content-body {
  padding: 24px 28px;
  max-width: 1280px;
}

/* =========== HAMBURGER =========== */
.hamburger {
  display: none;
  position: fixed;
  top: 14px; left: 14px;
  z-index: 300;
  background: var(--sidebar-bg);
  border: none;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 190;
}
.overlay.show { display: block; }

/* =========== CARDS =========== */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.card-header h2 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
}

.card-body { padding: 16px 18px; }
.card-body.p0 { padding: 0; }
.card-link { color: var(--accent); font-size: .82rem; text-decoration: none; }
.card-link:hover { text-decoration: underline; }
.card-critical { border: 1px solid rgba(239,68,68,.3); }

/* =========== STATS =========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }

.stat-blue  .stat-icon { background: rgba(59,130,246,.1); color: var(--accent); }
.stat-green .stat-icon { background: rgba(16,185,129,.1); color: var(--green); }
.stat-amber .stat-icon { background: rgba(245,158,11,.1); color: var(--amber); }
.stat-orange.stat-icon { background: rgba(249,115,22,.1); color: var(--orange); }
.stat-purple .stat-icon { background: rgba(139,92,246,.1); color: var(--purple); }

.stat-number { font-size: 1.6rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* =========== BADGES =========== */
.badge {
  display: inline-flex; align-items: center;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-blue   { background: rgba(59,130,246,.12); color: #1d4ed8; }
.badge-green  { background: rgba(16,185,129,.12); color: #065f46; }
.badge-red    { background: rgba(239,68,68,.12);  color: #b91c1c; }
.badge-amber  { background: rgba(245,158,11,.12); color: #92400e; }
.badge-orange { background: rgba(249,115,22,.12); color: #9a3412; }
.badge-purple { background: rgba(139,92,246,.12); color: #5b21b6; }
.badge-cyan   { background: rgba(6,182,212,.12);  color: #0e7490; }
.badge-grey   { background: rgba(107,114,128,.1); color: #374151; }
.badge-dept   { background: rgba(59,130,246,.08); color: #1d4ed8; }

/* =========== TABLES =========== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

.data-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .03em;
  border-bottom: 1px solid var(--border);
  background: #f8fafc;
}

.data-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #f8fafc; }

/* =========== ALERT BANNERS =========== */
.alert-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: .875rem;
}

.alert-red { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #991b1b; }
.alert-banner a { color: #1d4ed8; margin-left: 4px; }

.alert { padding: 12px 16px; border-radius: 8px; font-size: .875rem; margin-bottom: 12px; }
.alert-error { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); color: #991b1b; }
.alert-green { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); color: #065f46; }

/* =========== CHARTS =========== */
.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.chart-card .card-body { padding: 16px; }

/* =========== TWO COL =========== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =========== FILTERS =========== */
.filter-bar { border-radius: var(--radius); }
.filter-bar .card-body,
.filter-bar { overflow: visible; }

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  align-items: center;
}

.filter-input {
  flex: 1;
  min-width: 200px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  outline: none;
  background: var(--card);
  color: var(--text);
}
.filter-input:focus { border-color: var(--accent); }

.filter-select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  background: var(--card);
  color: var(--text);
  outline: none;
  cursor: pointer;
}
.filter-select:focus { border-color: var(--accent); }
.filter-select.full-width { width: 100%; }

/* =========== BUTTONS =========== */
.btn-primary, .btn-secondary {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #2563eb; }
.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }

.btn-delete {
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  padding: 4px; border-radius: 4px;
}
.btn-delete:hover { color: var(--red); background: rgba(239,68,68,.08); }

.btn-login {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.btn-login:hover { background: #2563eb; }

/* =========== PAGINATION =========== */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}

.page-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  font-size: .875rem;
  transition: background .12s;
}
.page-btn:hover { background: var(--bg); }
.page-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =========== VISITS =========== */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 12px;
}

.visit-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 14px;
  display: flex;
  gap: 14px;
  box-shadow: var(--shadow);
  align-items: flex-start;
}

.visit-emergency { border-left: 3px solid var(--red); }

.visit-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
  background: #f8fafc;
  border-radius: 8px;
  padding: 6px 4px;
  border: 1px solid var(--border);
}
.visit-day   { font-size: 1.3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.visit-month { font-size: .7rem; text-transform: uppercase; color: var(--muted); }
.visit-year  { font-size: .68rem; color: var(--muted); }

.visit-info { flex: 1; }
.visit-hospital  { font-weight: 700; font-size: .9rem; color: var(--text); }
.visit-department{ font-size: .8rem; color: var(--muted); margin-top: 2px; }
.visit-doctor    { font-size: .78rem; color: var(--muted); margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.visit-notes     { font-size: .78rem; color: var(--red); margin-top: 4px; font-style: italic; }
.visit-badges    { display: flex; flex-direction: column; gap: 4px; }

/* =========== LAB RESULTS =========== */
.lab-group {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lab-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  gap: 12px;
}

.lab-summary::-webkit-details-marker { display: none; }
.lab-summary::marker { display: none; }

.lab-summary:hover { background: #f8fafc; }

.lab-summary-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lab-summary-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lab-date     { font-weight: 700; font-size: .875rem; }
.lab-institution { font-size: .82rem; color: var(--muted); }
.lab-count    { font-size: .78rem; color: var(--muted); }

details[open] .details-arrow { transform: rotate(180deg); }
.details-arrow { transition: transform .2s; color: var(--muted); }

.lab-body { padding: 0 0 0; border-top: 1px solid var(--border); }
.lab-table td:first-child { display: flex; align-items: center; gap: 8px; }

/* Durum çubukları */
.status-bar {
  display: inline-block;
  width: 4px; height: 18px;
  border-radius: 2px;
  flex-shrink: 0;
}
.status-bar-normal   { background: var(--green); }
.status-bar-high     { background: var(--red); }
.status-bar-low      { background: var(--amber); }
.status-bar-abnormal { background: var(--red); }

.test-high td   { background: rgba(239,68,68,.04); }
.test-low  td   { background: rgba(245,158,11,.04); }

/* =========== PRESCRIPTIONS =========== */
.rx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.rx-card { padding: 16px; }
.rx-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.rx-date { font-weight: 700; color: var(--text); font-size: .9rem; }
.rx-hospital { font-size: .82rem; color: var(--muted); }
.rx-doctor { color: var(--muted); }
.rx-code { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: 4px; background: #f8fafc; padding: 4px 8px; border-radius: 6px; border: 1px solid var(--border); }

.med-list { list-style: none; padding: 0; }
.med-list li { display: flex; align-items: flex-start; gap: 8px; padding: 4px 0; font-size: .875rem; }
.med-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 7px; }

/* =========== RADIOLOGY =========== */
.radiology-body { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radiology-type { font-size: 1rem; font-weight: 700; }
.radiology-meta { display: flex; flex-wrap: wrap; gap: 4px; font-size: .8rem; color: var(--muted); margin-top: 4px; }
.sep { color: var(--border); }
.radiology-findings h3, .radiology-conclusion h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 6px; }

.important-banner {
  background: rgba(245,158,11,.08);
  border-bottom: 1px solid rgba(245,158,11,.2);
  color: #92400e;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =========== TIMELINE =========== */
.timeline { position: relative; }
.timeline-year { margin-bottom: 24px; }
.timeline-year-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  display: inline-block;
}

.timeline-item {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  padding-left: 8px;
  border-left: 2px solid var(--border);
  position: relative;
}

.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  position: absolute;
  left: -7px;
  border: 2px solid var(--card);
}

.timeline-content {
  background: var(--card);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  flex: 1;
  box-shadow: var(--shadow);
  margin-left: 10px;
}

.timeline-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.timeline-date   { font-size: .78rem; color: var(--muted); }
.timeline-title  { font-weight: 600; font-size: .875rem; color: var(--text); }
.timeline-sub    { margin-top: 2px; }
.timeline-notes  { font-size: .78rem; color: var(--red); margin-top: 4px; font-style: italic; }

/* =========== DOCTORS =========== */
.doctor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.doctor-card {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.doctor-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}

.doctor-name { font-weight: 700; font-size: .9rem; }
.doctor-dept { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.doctor-stats { font-size: .75rem; color: var(--muted); margin-top: 4px; display: flex; align-items: center; gap: 4px; }

/* =========== HEALTH NOTES =========== */
.note-form .form-row { display: flex; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  font-family: inherit;
  outline: none;
  background: var(--card);
  color: var(--text);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.flex1 { flex: 1; }

.tag-buttons { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: .78rem;
  cursor: pointer;
  user-select: none;
  background: var(--bg);
  transition: background .12s, border-color .12s;
}
.tag-btn:hover { background: rgba(59,130,246,.08); border-color: var(--accent); }
.tag-btn input { display: none; }
.tag-btn:has(input:checked) { background: rgba(59,130,246,.12); border-color: var(--accent); color: #1d4ed8; }

.note-card { padding: 0; }
.note-header { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid var(--border); }
.note-meta { display: flex; align-items: center; gap: 12px; }
.note-date { font-size: .82rem; color: var(--muted); }
.note-severity { font-size: .82rem; font-weight: 600; }
.note-content { padding: 12px 14px; font-size: .875rem; line-height: 1.7; }

/* =========== DIAGNOSES =========== */
.icd-code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .78rem;
  font-family: 'SF Mono', monospace;
  color: var(--accent);
}

/* =========== LOGIN =========== */
.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sidebar-bg) 0%, #1e3a5f 100%);
}

.login-wrapper { width: 100%; max-width: 400px; padding: 20px; }

.login-card {
  background: var(--card);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.login-logo { display: flex; justify-content: center; margin-bottom: 12px; }
.login-title { text-align: center; font-size: 1.5rem; font-weight: 800; color: var(--text); }
.login-subtitle { text-align: center; color: var(--muted); font-size: .875rem; margin-bottom: 24px; }
.login-form .form-group { margin-bottom: 14px; }

/* =========== STAT PILLS =========== */
.diagnoses-stats, .lab-stats, .radiology-stats, .timeline-stats {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}

.stat-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .82rem;
  color: var(--text);
}
.stat-pill-green { border-color: rgba(16,185,129,.3); color: #065f46; background: rgba(16,185,129,.06); }
.stat-pill-red   { border-color: rgba(239,68,68,.3);  color: #b91c1c; background: rgba(239,68,68,.06); }
.stat-pill-amber { border-color: rgba(245,158,11,.3); color: #92400e; background: rgba(245,158,11,.06); }

/* =========== ONERI =========== */
.oneri-list { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.oneri-list li { padding-left: 20px; position: relative; font-size: .875rem; line-height: 1.6; }
.oneri-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.disclaimer { border: 1px dashed var(--border); }

/* =========== UTILITIES =========== */
.mt4  { margin-top: 4px; }
.mt8  { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mb8  { margin-bottom: 8px; }
.mb12 { margin-bottom: 12px; }
.mb16 { margin-bottom: 16px; }

.text-muted { color: var(--muted); }
.small      { font-size: .78rem; }
.full-width { width: 100%; }

.result-info { font-size: .875rem; color: var(--muted); }
.empty-state { padding: 32px; text-align: center; color: var(--muted); font-size: .875rem; }
.empty-state.full-width { grid-column: 1/-1; }

/* =========== RESPONSIVE =========== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .sidebar {
    transform: translateX(-100%);
    transition: transform .25s;
  }
  .sidebar.open { transform: translateX(0); }

  .main-content { margin-left: 0; }
  .page-header { padding: 14px 16px 14px 52px; }
  .content-body { padding: 16px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .charts-grid { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .rx-grid { grid-template-columns: 1fr; }
  .doctor-grid { grid-template-columns: 1fr 1fr; }
  .radiology-body { grid-template-columns: 1fr; }
  .filter-form { flex-direction: column; }
  .filter-input, .filter-select { width: 100%; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .doctor-grid { grid-template-columns: 1fr; }
}
