/* ========== Hero / front grid ========== */
.front {
  padding: 28px 0 8px;
}
.front-grid {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 28px;
  align-items: stretch;
}

/* Latest column */
.latest-col h2 {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--fg-soft);
  text-transform: uppercase;
  margin: 0 0 14px;
  padding-bottom: 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.latest-item {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  display: block;
}
.latest-item:last-child { border-bottom: 0; }
.latest-item .cat {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.latest-item h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.latest-item:hover h3 { color: var(--primary); }
.latest-item .meta {
  font-size: 10.5px;
  color: var(--fg-mute);
  font-family: 'Inconsolata', monospace;
  letter-spacing: 0.02em;
}

/* Center hero */
.hero-main {
  display: flex;
  flex-direction: column;
}
.hero-main .img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.hero-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hero-main:hover img { transform: scale(1.02); }
.hero-main h1, .hero-secondary h3, .right-card h3, .cat-card h3 { transition: color 0.15s ease; }
.hero-main a:hover h1,
.hero-secondary a:hover h3,
.right-card:hover h3,
.cat-card:hover h3 { color: var(--primary); }
.img-credit {
  position: absolute;
  right: 8px; bottom: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inconsolata', monospace;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.hero-main .cat {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}
.hero-main h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
  line-height: 1.15;
}
.hero-main .dek {
  font-size: 15px;
  color: var(--fg-soft);
  margin: 0 0 14px;
  line-height: 1.55;
  font-family: 'Inconsolata', monospace;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--fg-mute);
  font-family: 'Inconsolata', monospace;
  flex-wrap: wrap;
}
.tag {
  display: inline-flex;
  font-size: 12px;
  font-family: 'Inconsolata', monospace;
  font-stretch: semi-expanded;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--tag-bg);
  color: var(--tag-fg);
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, color 0.15s ease, transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tag:hover, a.tag:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.tag-city {
  color: var(--blue-500);
  background: color-mix(in oklab, var(--blue-500) 12%, var(--bg));
}
[data-theme="dark"] .tag-city {
  color: var(--blue-500);
  background: color-mix(in oklab, var(--blue-500) 18%, var(--bg));
}
.tag-city:hover { background: var(--blue-500); color: #fff; transform: translateY(-2px); }
