  .maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
  .runners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.runner-thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.runner-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.runner-name {
	padding-top:16px;
  font-family: var(--head);
  font-size: 22px;
  font-weight: 800;
  color: #e8f8e8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.avatar-ring a img{
	border-radius: 50%;
}
/* ── MAP CARD ── */
.map-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lime-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.map-card:hover {
  border-color: var(--lime-dim);
  background: var(--bg3);
}
.map-card:hover::before { opacity: 1; }

/* corner brackets on hover */
.map-card::after {
  content: '';
  position: absolute;
  top: 6px; left: 6px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--lime);
  border-left: 1px solid var(--lime);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 2;
}
.map-card:hover::after { opacity: 1; }

.map-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.map-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.85);
  transition: filter 0.35s, transform 0.35s;
}
.map-card:hover .map-thumb img {
  filter: saturate(1) brightness(1);
  transform: scale(1.03);
}

.map-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,8,0.9) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.map-index {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  z-index: 2;
  background: rgba(8,12,8,0.7);
  padding: 3px 7px;
  border: 1px solid var(--border2);
}

.map-explore-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: #a8ff00;
  border: 1px solid var(--lime-dim);
  padding: 8px 16px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.map-card:hover .map-explore-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.map-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.map-name {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 800;
  color: #e8f8e8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.map-divider {
  width: 32px;
  height: 1px;
  background: var(--lime-dim);
  margin: 4px 0;
  transition: width 0.3s;
}
.map-card:hover .map-divider { width: 64px; }

.map-arrow {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}
.map-card:hover .map-arrow {
  color: var(--lime);
  transform: translateX(4px);
}

/* corner bottom-right on hover */
.map-card .br-corner {
  position: absolute;
  bottom: 6px; right: 6px;
  width: 14px; height: 14px;
  border-bottom: 1px solid var(--lime);
  border-right: 1px solid var(--lime);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
  pointer-events: none;
}
.map-card:hover .br-corner { opacity: 1; }