/* Genesis Properties — "In the market" news band.
   Uses the site's existing tokens (--gp-lite, --ink, --hair, --bg-1).
   Every rule is scoped to .gp-news so nothing here can reach the rest of the page. */

.gp-news {
  background: var(--bg-1, #0c0e0e);
  border-block: 1px solid var(--hair, rgba(236,237,237,.12));
}

.gp-news__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-top: clamp(24px, 3vw, 36px);
}

/* ── lead ───────────────────────────────────────────────────────────────── */

.gp-news__lead {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gp-news__leadHeadline {
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink, #eceded);
  margin: 0 0 16px;
  text-wrap: balance;
  transition: color var(--t-med, 0.18s ease);
}

a.gp-news__lead:hover .gp-news__leadHeadline {
  color: var(--gp-lite, #7fc39a);
}

.gp-news__rule {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gp, #3f8f63);
}

.gp-news__meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-3, rgba(236,237,237,.4));
  margin: 16px 0 0;
}

.gp-news__arrow {
  color: var(--gp-lite, #7fc39a);
}

/* ── rail ───────────────────────────────────────────────────────────────── */

.gp-news__rail {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gp-news__rail > li {
  border-bottom: 1px solid var(--hair, rgba(236,237,237,.12));
}

.gp-news__rail > li:first-child {
  border-top: 1px solid var(--hair, rgba(236,237,237,.12));
}

.gp-news__item {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 16px 0;
  transition: background var(--t-fast, 0.15s ease);
}

a.gp-news__item:hover {
  background: var(--row-hover, rgba(236, 237, 237, 0.03));
}

.gp-news__itemHeadline {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.008em;
  color: var(--ink, #eceded);
  margin: 0 0 7px;
  transition: color var(--t-med, 0.18s ease);
}

a.gp-news__item:hover .gp-news__itemHeadline {
  color: var(--gp-lite, #7fc39a);
}

.gp-news__rail .gp-news__meta {
  margin: 0;
}

/* ── focus + motion ─────────────────────────────────────────────────────── */

.gp-news a:focus-visible {
  outline: 2px solid var(--gp-lite, #7fc39a);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .gp-news * {
    transition: none !important;
  }
}

/* ── narrow ─────────────────────────────────────────────────────────────── */

@media (max-width: 860px) {
  .gp-news__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Standing thesis line above the headlines. */
.gp-news__thesis {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--ink-2, rgba(236, 237, 237, 0.62));
}
