/* ========== Categorized sections ========== */
.cat-section {
  padding: 56px 0 0;
  border-top: 1px solid var(--border);
}
.cat-section + .cat-section { border-top: 0; padding-top: 32px; }
.ms-map-section + .cat-section { border-top: 0; }
.cat-section .body { min-width: 0; }
.cat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cat-row.big { gap: 32px; }
.cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
a.cat-header:hover h2 { color: var(--primary); }
a.cat-header:hover .chev { transform: translateX(2px); }
.cat-header .chev { transition: transform 0.15s ease; }
.cat-header h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}
.cat-header .chev {
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
  margin-top: 4px;
}
.cat-row + .cat-header { margin-top: 36px; }

.cat-card .img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--bg-soft);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-card:hover img { transform: scale(1.02); }
.cat-card .badge-sponsor {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: rgba(0,0,0,0.55);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-family: 'Inconsolata', monospace;
}
.cat-card .cat {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}
.cat-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.22;
  margin: 6px 0 10px;
}
.cat-card .meta {
  font-size: 11.5px;
  color: var(--fg-mute);
  font-family: 'Inconsolata', monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ========== Cities grid ========== */
.cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 48px 0 8px;
  border-top: 1px solid var(--border);
}
.city-col h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.city-col h3 .chev { color: var(--primary); }
.city-col .lead .img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--bg-soft);
}
.city-col .lead img { width: 100%; height: 100%; object-fit: cover; }
.city-col .lead h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin: 12px 0 10px;
}
.city-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.city-col li {
  font-size: 12.5px;
  line-height: 1.4;
  padding: 12px 0;
  color: var(--fg-soft);
  border-bottom: 1px dashed var(--border);
}
.city-col li:hover { color: var(--primary); cursor: pointer; }
.city-col li:last-child { border-bottom: 0; }

/* ========== Bottom dual ad ========== */
.bottom-ads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 48px 0 0;
}
.bottom-ads .ad-banner.tall { padding: 36px 24px; }
