/* ============================================================
   HOOKIE.NET — Components
   Reusable UI components
   ============================================================ */

/* =============================================
   ONLINE DOT
============================================= */
.online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--online);
  animation: pulse 2.2s ease infinite;
  flex-shrink: 0;
}

.online-dot.offline {
  background: var(--text-3);
  animation: none;
}

/* =============================================
   VERIFIED BADGE
============================================= */
.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.55rem;
  color: var(--bg);
  font-weight: 900;
  flex-shrink: 0;
}

/* =============================================
   LOCATION BANNER
============================================= */
.location-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: linear-gradient(135deg, rgba(76,142,255,0.07), rgba(108,82,227,0.05));
  border: 1px solid rgba(76, 142, 255, 0.18);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  animation: fadeInDown var(--dur-slow) var(--ease);
}

.lb-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: rgba(76, 142, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.lb-label {
  font-size: 0.7rem;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lb-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: 3px;
}

.lb-meta {
  margin-left: auto;
  text-align: right;
}

.lb-count {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--flame);
  line-height: 1;
}

.lb-count-label {
  font-size: 0.7rem;
  color: var(--text-3);
}

.refresh-btn {
  padding: 7px 16px;
  background: rgba(76, 142, 255, 0.1);
  border: 1px solid rgba(76, 142, 255, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--flame-2);
  font-weight: 600;
  transition: all var(--dur-med);
}

.refresh-btn:hover {
  background: rgba(76, 142, 255, 0.18);
  transform: translateY(-1px);
}

/* =============================================
   STATS ROW
============================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: border-color var(--dur-med), transform var(--dur-med);
}

.stat-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-icon--flame { background: rgba(76, 142, 255, 0.12); }
.stat-icon--rose  { background: rgba(108, 82, 227, 0.12); }
.stat-icon--teal  { background: rgba(56, 217, 192, 0.12); }
.stat-icon--amber { background: rgba(76, 142, 255, 0.12); }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 0.73rem;
  color: var(--text-3);
  margin-top: 3px;
}

/* =============================================
   MAP SECTION
============================================= */
.map-section {
  margin-bottom: var(--space-8);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  height: 290px;
  background: var(--bg-3);
}

.map-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.map-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 42% 60%, rgba(76,142,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 30%, rgba(108,82,227,0.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
}

.map-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
}

.map-label-chip {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13,17,23,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 0.73rem;
  color: var(--text-2);
  z-index: 5;
  white-space: nowrap;
}

/* Radar */
.map-radar {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(76, 142, 255, 0.28);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.map-radar-1  { width: 80px;  height: 80px;  animation: radarExpand 2.6s ease-out infinite; }
.map-radar-2  { width: 140px; height: 140px; animation: radarExpand 2.6s ease-out 0.85s infinite; }
.map-radar-3  { width: 200px; height: 200px; animation: radarExpand 2.6s ease-out 1.7s infinite; }

.map-you {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--flame);
  box-shadow: 0 0 0 4px rgba(76,142,255,0.28), var(--glow-flame);
}

/* Map pins */
.map-pin-wrap {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  transform: translate(-50%, -100%);
  transition: z-index 0s;
}

.map-pin-wrap:hover { z-index: 10; }

.map-pin {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2.5px solid var(--flame);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-bounce), box-shadow var(--dur-med);
  box-shadow: 0 4px 18px rgba(76,142,255,0.4);
}

.map-pin:hover {
  transform: rotate(-45deg) scale(1.2);
  box-shadow: 0 6px 28px rgba(76,142,255,0.6);
}

.map-pin img {
  transform: rotate(45deg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Map controls */
.map-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-ctrl-btn {
  width: 32px;
  height: 32px;
  background: rgba(31,31,46,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-2);
  transition: all var(--dur-fast);
}

.map-ctrl-btn:hover {
  background: var(--surface-2);
  color: var(--text);
}

/* =============================================
   USER CARD
============================================= */
.users-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.user-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--dur-med) var(--ease),
    border-color var(--dur-med),
    box-shadow var(--dur-med);
  animation: fadeInUp var(--dur-slow) var(--ease) both;
}

.user-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 142, 255, 0.28);
  box-shadow: 0 14px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(76,142,255,0.12);
}

.card-photo {
  height: 195px;
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.user-card:hover .card-photo img {
  transform: scale(1.06);
}

/* Status badge */
.card-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13,17,23,0.72);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: var(--online);
}

.card-status.offline {
  color: var(--text-3);
  border-color: var(--border);
}

/* Distance badge */
.card-dist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(13,17,23,0.72);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Hover quick actions */
.card-hover-actions {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-3);
  background: linear-gradient(to top, rgba(13,17,23,0.92) 0%, transparent 100%);
  display: flex;
  gap: var(--space-2);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-med), transform var(--dur-med);
}

.user-card:hover .card-hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.qk-btn {
  flex: 1;
  padding: 7px;
  border-radius: var(--radius-xs);
  font-size: 0.73rem;
  font-weight: 600;
  transition: transform var(--dur-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.qk-btn:hover { transform: scale(1.04); }

.qk-btn--like {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(76,142,255,0.35);
}

.qk-btn--msg {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Card info */
.card-body {
  padding: var(--space-4);
}

.card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.card-age {
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 400;
  font-family: var(--font-body);
}

.card-location {
  font-size: 0.73rem;
  color: var(--text-3);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: var(--space-3);
}

.card-tag {
  font-size: 0.63rem;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--bg-3);
  color: var(--text-3);
  border: 1px solid var(--border);
}

/* Compatibility bar */
.compat-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.compat-bar {
  flex: 1;
  height: 3px;
  background: var(--bg-3);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.compat-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
  transition: width 0.6s var(--ease);
}

.compat-pct {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--flame-2);
  font-family: var(--font-display);
  min-width: 30px;
  text-align: right;
}

/* =============================================
   FEATURED STRIP
============================================= */
.featured-strip {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-8);
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) transparent;
}

.featured-card {
  flex-shrink: 0;
  width: 155px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med);
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 142, 255, 0.28);
}

.featured-photo {
  height: 136px;
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
}

.featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--grad-amber);
  color: var(--bg);
  font-size: 0.57rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.featured-body {
  padding: var(--space-3) var(--space-3);
}

.featured-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.featured-dist {
  font-size: 0.7rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* =============================================
   FILTER SIDEBAR CARD
============================================= */
.filter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  margin-top: var(--space-2);
}

.filter-card-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.filter-group {
  margin-bottom: var(--space-4);
}

.filter-label {
  font-size: 0.68rem;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-2);
}

/* Range slider */
.range-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.range-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: var(--surface-2);
  border-radius: var(--radius-pill);
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--flame);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(76,142,255,0.5);
  transition: transform var(--dur-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-val {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--flame-2);
  font-weight: 700;
  min-width: 40px;
  text-align: right;
}

/* Tag pills */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag-pill {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-2);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--dur-fast);
  user-select: none;
}

.tag-pill:hover {
  border-color: var(--flame);
  color: var(--flame-2);
}

.tag-pill.active {
  background: rgba(76, 142, 255, 0.12);
  border-color: var(--flame);
  color: var(--flame-2);
}

/* Apply Button */
.btn-apply {
  width: 100%;
  padding: 10px;
  background: var(--grad-brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity var(--dur-med), transform var(--dur-fast);
  margin-top: var(--space-2);
}

.btn-apply:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* =============================================
   BUTTONS (global)
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--dur-med) var(--ease);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(76,142,255,0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(76,142,255,0.45);
}

.btn--secondary {
  background: var(--surface-2);
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.btn--secondary:hover {
  color: var(--text);
  background: var(--surface-3);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.btn--ghost:hover {
  background: var(--surface);
  color: var(--text);
}

.btn--sm { padding: 7px 14px; font-size: 0.78rem; }
.btn--lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius); }
.btn--pill { border-radius: var(--radius-pill); }

/* =============================================
   PROFILE MODAL
============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease);
  padding: var(--space-4);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94) translateY(20px);
  transition: transform var(--dur-slow) var(--ease);
  scrollbar-width: none;
}

.modal::-webkit-scrollbar { display: none; }

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-photo {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-photo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,1) 0%, transparent 55%);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(13,17,23,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--dur-fast);
}

.modal-close:hover {
  background: var(--surface-2);
}

.modal-body {
  padding: 0 var(--space-6) var(--space-6);
  margin-top: -44px;
  position: relative;
}

.modal-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin: var(--space-3) 0 var(--space-4);
  font-size: 0.8rem;
  color: var(--text-2);
}

.modal-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-bio {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.68;
  margin-bottom: var(--space-4);
}

.modal-section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.modal-interests {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.interest-chip {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  font-size: 0.8rem;
  color: var(--text-2);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.modal-actions .btn {
  width: 100%;
  padding: 13px;
  font-size: 0.9rem;
}

/* =============================================
   TOAST
============================================= */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: transform var(--dur-med) var(--ease);
  white-space: nowrap;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   FORM ELEMENTS
============================================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.form-input {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 0.9rem;
  color: var(--text);
  width: 100%;
  transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.form-input:focus {
  border-color: rgba(76, 142, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(76, 142, 255, 0.1);
}

.form-input--error {
  border-color: var(--error);
}

.form-error {
  font-size: 0.75rem;
  color: var(--error);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-hint {
  font-size: 0.73rem;
  color: var(--text-3);
}

/* =============================================
   SKELETON LOADER
============================================= */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}

/* =============================================
   EMPTY STATE
============================================= */
.empty-state {
  text-align: center;
  padding: var(--space-12) var(--space-6);
  color: var(--text-3);
  grid-column: 1 / -1;
}

.empty-icon { font-size: 3rem; margin-bottom: var(--space-3); }
.empty-title { font-family: var(--font-display); font-size: 1rem; color: var(--text-2); margin-bottom: var(--space-2); }
.empty-text  { font-size: 0.85rem; }

/* =============================================
   RESPONSIVE COMPONENTS
============================================= */
@media (max-width: 960px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr; }
  .users-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .location-banner { flex-wrap: wrap; }
  .lb-meta { order: -1; }
  .modal-actions { grid-template-columns: 1fr; }
}
