:root {
    --ink: #172033;
    --muted: #6b7280;
    --line: #e5e7eb;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --green: #14b8a6;
    --danger: #ef4444;
    --soft: #f6f8fc;
    --panel: rgba(255,255,255,.94);
}

* { box-sizing: border-box; }

body {
    min-height: 100vh;
    color: var(--ink);
    background: radial-gradient(circle at top left, #dbeafe 0, transparent 28rem),
                linear-gradient(135deg, #f8fafc 0%, #eef2ff 55%, #f8fafc 100%);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-card {
    width: min(460px, 100%);
    padding: 36px;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 28px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px);
}

.brand-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 18px;
    font-size: 1.7rem;
    box-shadow: 0 18px 36px rgba(37,99,235,.28);
}

.brand-mark.small {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.2rem;
    flex: 0 0 auto;
}

.login-card h1 {
    margin-top: 18px;
    font-weight: 800;
    letter-spacing: 0;
}

.demo-users {
    margin-top: 18px;
    color: var(--muted);
    font-size: .87rem;
}

.app-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    color: white;
    background: linear-gradient(180deg, #111827 0%, #1e3a8a 100%);
    display: flex;
    flex-direction: column;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-brand span {
    display: block;
    color: #bfdbfe;
    font-size: .84rem;
}

.sidebar .nav-link {
    border: 0;
    border-radius: 14px;
    padding: 12px 14px;
    text-align: left;
    color: #dbeafe;
    background: transparent;
    transition: .18s ease;
}

.sidebar .nav-link i {
    width: 24px;
    margin-right: 8px;
}

.sidebar .nav-link.active,
.sidebar .nav-link:hover {
    color: white;
    background: rgba(255,255,255,.13);
}

.sidebar-footer {
    margin-top: auto;
}

.user-badge {
    padding: 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    font-size: .9rem;
}

.main {
    min-width: 0;
    padding: 28px;
}

.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.eyebrow {
    color: var(--blue);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h2 {
    font-weight: 800;
    letter-spacing: 0;
}

.panel,
.detail-panel,
.activity-drawer {
    border: 1px solid rgba(255,255,255,.76);
    border-radius: 20px;
    background: var(--panel);
    box-shadow: 0 16px 42px rgba(15,23,42,.08);
    backdrop-filter: blur(14px);
}

.panel {
    padding: 22px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.stat-card {
    position: relative;
    overflow: hidden;
    min-height: 82px;
    padding: 12px 14px;
    border-radius: 14px;
    background: white;
    border: 1px solid var(--line);
    animation: rise .42s ease both;
}

.stat-card:after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(37,99,235,.09);
}

.stat-card span {
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin-top: 7px;
    font-size: 1.36rem;
    line-height: 1;
}

.stat-card i {
    color: var(--blue);
    font-size: 1rem;
    z-index: 1;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.insight-list {
    display: grid;
    gap: 10px;
}

.insight {
    padding: 11px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--line);
    font-size: .9rem;
}

.chart-panel {
    height: 360px;
}

.chart-panel h5 {
    margin-bottom: 10px;
}

.chart-box {
    position: relative;
    height: 300px;
    max-height: 300px;
}

.map-layout {
    position: relative;
    height: calc(100vh - 56px);
    min-height: 680px;
    display: grid;
    grid-template-columns: 360px minmax(320px, 1fr) 410px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 14px;
}

.map-topbar {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.map-actions {
    display: flex;
    gap: 10px;
    width: min(920px, 65vw);
}

.map-actions #buildingSearch,
.map-actions #activitySearch {
    min-width: 0;
}

#map {
    min-height: 0;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.76);
    box-shadow: 0 18px 52px rgba(15,23,42,.14);
    overflow: hidden;
    z-index: 1;
}

.detail-panel {
    padding: 16px;
    min-height: 0;
    overflow: auto;
}

.panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 800;
}

.right-panel-title {
    color: #172033;
}

.right-panel-title i {
    color: var(--blue);
}

.kv {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 6px 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
}

.kv span:first-child {
    color: var(--muted);
    font-weight: 700;
}

.summary-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.summary-section h6 {
    margin: 0 0 6px;
    color: #1d4ed8;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.summary-item {
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    background: #f8fafc;
}

.summary-item span {
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    line-height: 1.1;
}

.summary-item strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 760;
    line-height: 1.18;
}

.summary-section-form .summary-grid {
    display: block;
}

.summary-section-form .summary-item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 8px;
    padding: 4px 0;
    border: 0;
    border-bottom: 1px solid #edf2f7;
    border-radius: 0;
    background: transparent;
}

.summary-section-form .summary-item:last-child {
    border-bottom: 0;
}

.summary-section-form .summary-item span {
    margin: 0;
    color: #64748b;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.25;
}

.summary-section-form .summary-item strong {
    color: #1f2937;
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.25;
}

.summary-section h6 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    min-height: 20px;
    margin-left: 5px;
    padding: 2px 6px;
    border-radius: 999px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: .68rem;
}

.summary-section-inner {
    margin-top: 0;
    padding-top: 7px;
}

.summary-section-inner h6 {
    color: #64748b;
    font-size: .66rem;
}

.fiscal-units-section {
    margin-top: 11px;
}

.fiscal-units-list {
    display: grid;
    gap: 7px;
}

.fiscal-unit-card {
    border: 1px solid #dbeafe;
    border-radius: 11px;
    background: white;
    overflow: hidden;
}

.fiscal-unit-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 9px;
    cursor: pointer;
    list-style: none;
    background: linear-gradient(180deg, #eff6ff, #ffffff);
}

.fiscal-unit-card summary::-webkit-details-marker {
    display: none;
}

.fiscal-unit-card summary strong {
    display: block;
    color: #172033;
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.fiscal-unit-card summary small {
    display: block;
    margin-top: 1px;
    color: var(--muted);
    font-size: .68rem;
    line-height: 1.1;
}

.fiscal-unit-card summary i {
    color: #2563eb;
    transition: transform .16s ease;
}

.fiscal-unit-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.cedula-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fff7f7;
    color: #dc2626;
    text-decoration: none;
    transition: .15s ease;
}

.cedula-link:hover {
    border-color: #fca5a5;
    background: #fee2e2;
    color: #991b1b;
    transform: translateY(-1px);
}

.fiscal-unit-actions .cedula-link i {
    color: inherit;
    font-size: .95rem;
    transition: none;
}

.fiscal-unit-card[open] summary i {
    transform: rotate(180deg);
}

.fiscal-unit-card[open] summary .cedula-link i {
    transform: none;
}

.fiscal-unit-card .summary-section {
    margin: 0 9px 7px;
}

.fiscal-unit-card .summary-grid {
    grid-template-columns: 1fr;
}

.fiscal-unit-card .summary-section-surface .summary-grid {
    display: block;
}

.fiscal-unit-card .summary-section-form .summary-item {
    grid-template-columns: 104px minmax(0, 1fr);
    padding: 3px 0;
}

.fiscal-unit-card .summary-section-form .summary-item span {
    font-size: .68rem;
}

.fiscal-unit-card .summary-section-form .summary-item strong {
    font-size: .78rem;
    font-weight: 500;
}

.fiscal-empty {
    padding: 12px;
}

.empty-state {
    color: var(--muted);
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
}

.photo-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.photo-empty {
    grid-column: 1 / -1;
}

.photo-strip img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.compact-tabs .nav-link {
    padding: 7px 10px;
    border-radius: 999px;
    font-size: .84rem;
}

.detail-body {
    margin-top: 12px;
}

.unit-card,
.activity-card {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    margin-bottom: 10px;
}

.activity-drawer {
    grid-column: 1 / -1;
    padding: 14px;
    max-height: 170px;
    overflow: auto;
}

#activityList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.activity-card {
    margin: 0;
    cursor: pointer;
}

.activity-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 2px;
}

.activity-card-head strong {
    min-width: 0;
    padding-right: 4px;
}

.activity-card-actions {
    display: inline-flex;
    gap: 5px;
    flex: 0 0 auto;
}

.activity-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    background: #eff6ff;
    color: #2563eb;
    line-height: 1;
    transition: .15s ease;
}

.activity-icon-btn:hover {
    background: #dbeafe;
    transform: translateY(-1px);
}

.activity-icon-btn.is-danger {
    border-color: #fecaca;
    background: #fff1f2;
    color: #dc2626;
}

.activity-icon-btn.is-danger:hover {
    background: #fee2e2;
}

.activity-card.selected {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.activity-card small {
    color: var(--muted);
}

.activity-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.activity-epigraphs {
    display: block;
    margin-top: 4px;
    color: #475569;
    font-size: .72rem;
    line-height: 1.25;
}

.link-tool {
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    background: linear-gradient(180deg, #eff6ff, #ffffff);
}

.link-tool h6,
.right-section-title {
    margin: 0 0 7px;
    color: #1d4ed8;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.link-tool-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
}

.link-tool-head h6 {
    margin: 0;
}

.link-tool-head .btn {
    white-space: nowrap;
    font-weight: 800;
}

.link-tool p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.28;
}

.selected-activity-box {
    padding: 9px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
}

.selected-activity-box span {
    display: block;
    color: #64748b;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.selected-activity-box strong {
    display: block;
    margin-top: 2px;
    color: #172033;
    font-size: .9rem;
}

.selected-activity-box small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: .76rem;
}

.classification-notice {
    margin: 8px 0 10px;
    padding: 9px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
}

.classification-notice span {
    display: block;
    color: #64748b;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.classification-notice strong {
    display: block;
    margin-top: 2px;
    color: #334155;
    font-size: .84rem;
    line-height: 1.25;
}

.right-classification {
    margin-top: 0;
    border-color: #fde68a;
    background: #fffbeb;
}

.occupancy-counter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 12px;
}

.occupancy-counter > div {
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #f8fbff;
}

.occupancy-counter span {
    display: block;
    color: #64748b;
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .04em;
    line-height: 1.15;
    text-transform: uppercase;
}

.occupancy-counter strong {
    display: block;
    margin-top: 3px;
    color: #172033;
    font-size: 1.05rem;
    line-height: 1;
}

.status-modal {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(15,23,42,.26);
}

.status-modal .modal-header,
.status-modal .modal-footer {
    border-color: #eef2f7;
}

.status-modal-ref {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #1d4ed8;
    background: #eff6ff;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.datos2015-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.datos2015-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-width: 0;
}

.datos2015-header-main .modal-title {
    min-width: 0;
    overflow-wrap: anywhere;
}

.datos2015-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.datos2015-action {
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 800;
}

.datos2015-action:hover,
.datos2015-action.is-active {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.datos2015-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 14px;
}

.datos2015-photos-section {
    margin-bottom: 18px;
}

.datos2015-photos-section h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #1d4ed8;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.datos2015-photos-section h6 span {
    padding: 2px 7px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: .7rem;
}

.datos2015-photos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.datos2015-photos img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(15,23,42,.08);
}

.datos2015-featured {
    display: grid;
    grid-template-columns: 1.5fr .75fr .75fr;
    gap: 10px;
    margin: 0 0 18px;
}

.datos2015-featured-item {
    padding: 12px;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #eff6ff;
}

.datos2015-featured-item span {
    display: block;
    color: #1d4ed8;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.datos2015-featured-item strong {
    display: block;
    margin-top: 4px;
    color: #172033;
    font-size: .92rem;
    line-height: 1.32;
    overflow-wrap: anywhere;
}

.datos2015-featured-item.actividad_2026 strong {
    color: #0f766e;
}

.datos2015-featured-item.baja_inventario strong {
    color: #b91c1c;
}

.datos2015-item {
    min-width: 0;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.datos2015-item span {
    display: block;
    color: #64748b;
    font-size: .72rem;
    line-height: 1.1;
}

.datos2015-item strong {
    display: block;
    margin-top: 3px;
    color: #172033;
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.28;
    overflow-wrap: anywhere;
}

.leaflet-control-layers,
.leaflet-popup-content-wrapper {
    border-radius: 14px;
}

.leaflet-interactive:focus {
    outline: none;
}

.map-legend {
    display: grid;
    gap: 6px;
    padding: 10px 12px;
    border: 1px solid rgba(203,213,225,.88);
    border-radius: 12px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 28px rgba(15,23,42,.14);
    color: #172033;
    font-size: .78rem;
    line-height: 1.1;
}

.map-legend strong {
    margin-bottom: 2px;
    color: #0f172a;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.map-legend span {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.map-legend i {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #0f172a;
    border-radius: 4px;
    opacity: .78;
}

.state-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: 250px;
}

.activity-state-toggle {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.state-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 27px;
    padding: 5px 10px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    color: #6b7280;
    background: #f3f4f6;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: .16s ease;
}

.state-chip:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15,23,42,.12);
}

.state-chip:disabled {
    cursor: default;
    opacity: .86;
}

.state-chip-activo.is-selected {
    border-color: rgba(20,184,166,.25);
    background: #ccfbf1;
    color: #0f766e;
    box-shadow: 0 0 0 2px rgba(20,184,166,.14);
}

.state-chip-vacante.is-selected {
    border-color: rgba(37,99,235,.34);
    background: #dbeafe;
    color: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(37,99,235,.14);
}

.state-chip-mixto.is-selected {
    border-color: rgba(245,158,11,.28);
    background: #fef3c7;
    color: #92400e;
    box-shadow: 0 0 0 2px rgba(245,158,11,.14);
}

.campo-bea-btn {
    min-height: 24px;
    padding: 3px 8px;
    border: 1px solid #c4b5fd;
    border-radius: 999px;
    background: #f5f3ff;
    color: #6d28d9;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1;
}

.campo-bea-btn:hover {
    background: #ede9fe;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(109,40,217,.14);
}

@media (max-width: 1200px) {
    .app-shell { grid-template-columns: 88px minmax(0, 1fr); }
    .sidebar { padding: 18px 12px; }
    .sidebar-brand div:not(.brand-mark),
    .sidebar .nav-link span,
    .sidebar .nav-link { font-size: 0; }
    .sidebar .nav-link i { font-size: 1.2rem; margin: 0; width: auto; }
    .user-badge { display: none; }
    .map-layout {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
    }
    #map { height: 62vh; min-height: 420px; }
    .left-panel, .right-panel { max-height: none; }
    .activity-drawer { grid-column: auto; }
    #activityList { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .datos2015-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .datos2015-photos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .datos2015-featured { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .app-shell { display: block; }
    .sidebar {
        position: static;
        height: auto;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        overflow-x: auto;
    }
    .sidebar .nav { flex-direction: row !important; margin-top: 0 !important; }
    .sidebar-footer { margin-left: auto; margin-top: 0; }
    .main { padding: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .page-head, .map-topbar { align-items: flex-start; flex-direction: column; }
    .map-actions { width: 100%; flex-direction: column; }
    .login-card { padding: 24px; }
    .datos2015-grid { grid-template-columns: 1fr; }
    .datos2015-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
