/* Secondary card pair below hero */
.hero-secondary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero-secondary .img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--bg-soft);
}
.hero-secondary img { width: 100%; height: 100%; object-fit: cover; }
.hero-secondary .body { display: flex; flex-direction: column; justify-content: flex-start; padding-top: 4px; }
.hero-secondary .cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-secondary h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 10px;
}

/* Right column items */
.right-col { display: flex; flex-direction: column; gap: 22px; align-self: stretch; }
.right-col .ad-banner.with-cta {
  flex: 1;
  justify-content: center;
}
.right-card { display: block; }
.right-card .img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
}
.right-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.right-card:hover img { transform: scale(1.02); }
.right-card .cat {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}
.right-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 6px 0 8px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.right-card .meta {
  font-size: 11px;
  color: var(--fg-mute);
  font-family: 'Inconsolata', monospace;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ========== Mid full-width ad ========== */
.mid-ad { margin: 18px 0 0; }
