/* Drill OPIP UI */
.drill-setup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  align-items: end;
}

.drill-setup label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.drill-setup select,
.drill-setup input {
  width: 100%;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.drill-hud {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  align-items: center;
}

.tal-badge {
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
}

.tal-verde { background: #dcfce7; color: #166534; }
.tal-amarillo { background: #fef9c3; color: #854d0e; }
.tal-naranja { background: #ffedd5; color: #9a3412; }
.tal-rojo { background: #fee2e2; color: #991b1b; }
.tal-negro { background: #1e293b; color: #fff; }

.hud-level-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hud-level-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.hud-tal-hint {
  font-size: 0.75rem;
  margin-left: auto;
}

/* —— Tarjeta PBIP (verde / amarillo / rojo) —— */
.pbip-level-card {
  border-radius: var(--radius);
  padding: 1rem 1.15rem 1.1rem;
  margin-bottom: 1rem;
  border: 3px solid transparent;
  box-shadow: var(--shadow);
  transition: background 0.25s ease, border-color 0.25s ease;
}

body.drill-active .pbip-level-card {
  padding: 0.55rem 0.85rem;
  margin-bottom: 0;
  border-width: 2px;
}

.drill-command-deck {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

body.drill-active .drill-command-deck {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

.drill-ops-strip {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

body.drill-active .drill-hud {
  margin-bottom: 0;
  padding: 0.45rem 0.65rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.audit-panel--rail {
  flex: 1;
  min-height: 72px;
  max-height: 120px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.audit-panel--rail ul {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  white-space: nowrap;
}

.audit-panel--rail li {
  flex: 0 0 auto;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #f8fafc;
  font-size: 0.72rem;
}

.drill-assets-bar {
  margin-top: 0.85rem;
}

.drill-assets-bar .asset-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
}

.pbip-compact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

body.drill-active .pbip-scale {
  margin-bottom: 0;
  flex: 1;
  min-width: 180px;
}

body.drill-active .pbip-scale-item {
  padding: 0.3rem 0.25rem;
}

body.drill-active .pbip-scale-num {
  font-size: 1rem;
}

.pbip-hero--inline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.pbip-hero--inline .pbip-hero-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.pbip-hero--inline .pbip-hero-name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pbip-card-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-pbip-toggle {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  cursor: pointer;
}

body.drill-active .pbip-expanded[hidden] {
  display: none !important;
}

body.drill-active .pbip-level-card.pbip-expanded-on {
  grid-column: 1 / -1;
}

body.drill-active .pbip-level-card.pbip-expanded-on .pbip-expanded {
  display: block !important;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  body.drill-active .drill-command-deck {
    grid-template-columns: 1fr;
  }
}

.pbip-level-card.pbip-verde {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #22c55e;
}

.pbip-level-card.pbip-amarillo {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border-color: #eab308;
}

.pbip-level-card.pbip-rojo {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-color: #ef4444;
}

.pbip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.pbip-card-kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.pbip-card-title {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.pbip-pna-badge {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  background: var(--nr-navy);
  color: #fff;
}

.pbip-card-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0 0 0.85rem;
  line-height: 1.45;
}

.pbip-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.pbip-scale-item {
  text-align: center;
  padding: 0.5rem 0.35rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pbip-scale-item[data-nivel="1"] { border-color: #86efac; }
.pbip-scale-item[data-nivel="2"] { border-color: #fde047; }
.pbip-scale-item[data-nivel="3"] { border-color: #fca5a5; }

.pbip-scale-item.active {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.pbip-scale-item.active[data-nivel="1"] {
  background: #dcfce7;
  border-color: #16a34a;
}

.pbip-scale-item.active[data-nivel="2"] {
  background: #fef9c3;
  border-color: #ca8a04;
}

.pbip-scale-item.active[data-nivel="3"] {
  background: #fee2e2;
  border-color: #dc2626;
}

.pbip-scale-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.pbip-scale-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.15rem;
}

.pbip-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
}

.pbip-hero-number-wrap {
  flex-shrink: 0;
  text-align: center;
  min-width: 4.5rem;
}

.pbip-hero-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.pbip-verde .pbip-hero-number { color: #15803d; }
.pbip-amarillo .pbip-hero-number { color: #a16207; }
.pbip-rojo .pbip-hero-number { color: #b91c1c; }

.pbip-hero-color {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.pbip-hero-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.pbip-hero-resumen {
  font-size: 0.88rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.45;
}

.pbip-implicaciones {
  margin: 0 0 0.5rem;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  line-height: 1.45;
}

.pbip-oipip-note {
  font-size: 0.75rem;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  color: var(--muted);
  line-height: 1.4;
}

.pbip-shift-card {
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  border: 2px solid transparent;
}

.pbip-shift-card.pbip-verde {
  background: #ecfdf5;
  border-color: #22c55e;
}

.pbip-shift-card.pbip-amarillo {
  background: #fefce8;
  border-color: #eab308;
}

.pbip-shift-card.pbip-rojo {
  background: #fef2f2;
  border-color: #ef4444;
}

.pbip-shift-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.pbip-shift-motivo {
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
}

.threat-legend {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.threat-grupo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.threat-grupo-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  min-width: 11rem;
  flex-shrink: 0;
}

.threat-chip {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid transparent;
  margin-left: 0.35rem;
}

.system-alert-header .threat-chip {
  margin-left: auto;
}

.threat-ransomware { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.threat-phishing { background: #ffedd5; color: #9a3412; border-color: #fdba74; }
.threat-malware { background: #ede9fe; color: #5b21b6; border-color: #c4b5fd; }
.threat-ddos { background: #e0f2fe; color: #0369a1; border-color: #7dd3fc; }
.threat-credentials { background: #fce7f3; color: #9d174d; border-color: #f9a8d4; }
.threat-vendor { background: #f3e8ff; color: #6b21a8; border-color: #d8b4fe; }
.threat-troyano { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.threat-ot-malware { background: #fef9c3; color: #854d0e; border-color: #fde047; }
.threat-breach { background: #fce7f3; color: #831843; border-color: #f472b6; }
.threat-misconfig { background: #f1f5f9; color: #475569; border-color: #cbd5e1; }
.threat-intrusion { background: #cffafe; color: #0e7490; border-color: #67e8f9; }
.threat-physical { background: #f5f5f4; color: #44403c; border-color: #d6d3d1; }
.threat-ops { background: #ecfccb; color: #3f6212; border-color: #bef264; }
.threat-generic { background: #f1f5f9; color: #475569; }
.threat-wiper { background: #1e293b; color: #f8fafc; border-color: #475569; }
.threat-botnet { background: #4c1d95; color: #ede9fe; border-color: #7c3aed; }
.threat-cryptomining { background: #ecfccb; color: #365314; border-color: #a3e635; }
.threat-spearphish { background: #ffedd5; color: #7c2d12; border-color: #fb923c; }
.threat-social { background: #fef3c7; color: #78350f; border-color: #fcd34d; }
.threat-bruteforce { background: #fce7f3; color: #831843; border-color: #f472b6; }
.threat-insider { background: #fdf2f8; color: #9d174d; border-color: #f9a8d4; }
.threat-iam { background: #e0e7ff; color: #3730a3; border-color: #a5b4fc; }
.threat-dos { background: #e0f2fe; color: #075985; border-color: #38bdf8; }
.threat-mitm { background: #cffafe; color: #155e75; border-color: #22d3ee; }
.threat-waf { background: #fef9c3; color: #713f12; border-color: #facc15; }
.threat-scan { background: #f1f5f9; color: #334155; border-color: #94a3b8; }
.threat-api { background: #ddd6fe; color: #4c1d95; border-color: #a78bfa; }
.threat-sqli { background: #fecdd3; color: #881337; border-color: #fb7185; }
.threat-xss { background: #ffe4e6; color: #9f1239; border-color: #fda4af; }
.threat-supply { background: #ede9fe; color: #5b21b6; border-color: #c4b5fd; }
.threat-zeroday { background: #450a0a; color: #fecaca; border-color: #991b1b; }
.threat-exfil { background: #fce7f3; color: #701a75; border-color: #e879f9; }
.threat-ot-net { background: #fef3c7; color: #92400e; border-color: #fbbf24; }
.threat-cloud { background: #dbeafe; color: #1e40af; border-color: #60a5fa; }
.threat-cloud-abuse { background: #bfdbfe; color: #1e3a8a; border-color: #3b82f6; }
.threat-patch { background: #f1f5f9; color: #475569; border-color: #cbd5e1; }
.threat-backup { background: #f5f5f4; color: #57534e; border-color: #d6d3d1; }
.threat-soc { background: #ccfbf1; color: #115e59; border-color: #2dd4bf; }
.threat-sabotage { background: #fecaca; color: #7f1d1d; border-color: #f87171; }
.threat-theft { background: #e7e5e4; color: #44403c; border-color: #a8a29e; }
.threat-drone { background: #e2e8f0; color: #334155; border-color: #94a3b8; }
.threat-protest { background: #fed7aa; color: #7c2d12; border-color: #fdba74; }
.threat-spoof { background: #bae6fd; color: #0c4a6e; border-color: #38bdf8; }
.threat-jamming { background: #d1d5db; color: #1f2937; border-color: #9ca3af; }
.threat-link { background: #e0f2fe; color: #0369a1; border-color: #7dd3fc; }
.threat-power { background: #fef9c3; color: #854d0e; border-color: #fde047; }
.threat-fire { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.threat-hazmat { background: #ffedd5; color: #9a3412; border-color: #fdba74; }
.threat-mechanical { background: #f3f4f6; color: #374151; border-color: #d1d5db; }
.threat-human { background: #faf5ff; color: #6b21a8; border-color: #d8b4fe; }

.drill-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1rem;
}

.drill-stage {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.drill-stage .briefing,
.drill-stage .context {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.drill-stage .npc-plain,
.drill-stage .briefing-plain,
.drill-stage .context-plain {
  background: #f8fafc;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  margin: 0.5rem 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--muted);
}

.npc-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nr-blue);
  margin-right: 0.35rem;
}

.npc-block {
  margin-bottom: 0.5rem;
}

.drill-stage .npc {
  background: var(--nr-blue-soft);
  border-left: 3px solid var(--nr-blue);
  padding: 0.5rem 0.75rem;
  margin: 0;
  font-size: 0.9rem;
}

.drill-stage .inject {
  color: var(--nr-navy);
  font-weight: 600;
}

.cascade-layer {
  font-size: 0.8rem;
  margin: 0.25rem 0;
  color: var(--muted);
}

.cascade-label {
  font-weight: 700;
  color: var(--nr-navy);
  margin-right: 0.35rem;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-option {
  text-align: left;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
}

.btn-option:hover {
  background: var(--nr-blue-soft);
  border-color: var(--nr-blue-border);
}

.drill-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  max-height: 200px;
  overflow-y: auto;
}

.audit-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-family: ui-monospace, monospace;
}

.asset-panel table {
  width: 100%;
  font-size: 0.8rem;
  border-collapse: collapse;
}

.asset-panel th,
.asset-panel td {
  border-bottom: 1px solid var(--border);
  padding: 0.35rem;
}

@media (max-width: 900px) {
  .drill-grid {
    grid-template-columns: 1fr;
  }
}

.decision-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1rem;
  align-items: start;
}

.context-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  font-size: 0.85rem;
}

.card-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--nr-navy);
  margin: 0 0 0.5rem;
}

.card-meta {
  margin: 0.25rem 0;
  font-size: 0.82rem;
}

.card-block {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.card-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.decision-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.decision-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.stack-layer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.stack-layer-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  background: var(--nr-blue-soft);
  color: var(--nr-navy);
  border: 1px solid var(--nr-blue-border);
}

.stack-focus-block p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0.25rem 0 0;
}

.normativa-block {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  margin-top: 0.5rem;
}

.normativa-ref {
  font-size: 0.8rem;
  font-weight: 600;
  color: #92400e;
  margin: 0.25rem 0;
  line-height: 1.4;
}

.concepto-clave {
  font-size: 0.78rem;
  color: #78350f;
  margin: 0.35rem 0 0;
  line-height: 1.45;
}

.obligacion-block {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  margin-top: 0.5rem;
}

.obligacion-block p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0.25rem 0 0;
}

.obligacion-plain {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px dashed #bbf7d0;
}

.options-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.consequence-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #fff 100%);
  border: 1px solid var(--nr-blue-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.consequence-card h3 {
  margin: 0 0 0.75rem;
  color: var(--nr-navy);
}

.consequence-opt {
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.consequence-effect {
  font-size: 0.85rem;
  margin: 0.35rem 0;
  color: var(--nr-navy);
}

.consequence-operativo {
  line-height: 1.6;
  margin: 0.75rem 0;
  padding: 0.75rem;
  background: var(--surface);
  border-left: 3px solid var(--nr-blue);
}

.consequence-plain {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1rem;
}

.debrief-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.debrief-list li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.debrief-consequence {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

.inject-intro {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.system-alert-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-left: 4px solid var(--nr-navy);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
}

.system-alert-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.origin-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  text-transform: uppercase;
}

.origin-scada { background: #dbeafe; color: #1e40af; }
.origin-iot { background: #d1fae5; color: #065f46; }
.origin-it { background: #e0e7ff; color: #3730a3; }
.origin-cctv { background: #fef3c7; color: #92400e; }
.origin-pacs { background: #fce7f3; color: #9d174d; }
.origin-siem { background: #fee2e2; color: #991b1b; }
.origin-nms { background: #f3f4f6; color: #374151; }
.origin-tos { background: #cffafe; color: #0e7490; }
.origin-comms { background: #ede9fe; color: #5b21b6; }
.origin-ot { background: #ffedd5; color: #9a3412; }
.origin-bms { background: #fef9c3; color: #854d0e; }

.system-alert-source {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--nr-navy);
}

.system-alert-text {
  line-height: 1.55;
  margin: 0.35rem 0;
  font-size: 0.9rem;
}

.system-alert-plain {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0.35rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border);
}

.system-alert-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

@media (max-width: 700px) {
  .decision-layout {
    grid-template-columns: 1fr;
  }
}
