/* Insights index page — dark navy, C4C design system */

.insights-page {
  background: #0d0f1a;
  color: #e8e8ec;
  padding: 4rem 2rem 8rem;
  max-width: 1400px;
  margin: 0 auto;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}

/* ═══ FEATURED / LATEST HERO ═══ */
.insights-latest { margin-bottom: 6rem; }

.insights-latest__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #6b6f82;
  margin-bottom: 1rem;
}

.insights-latest__accent-line { height: 2px; margin-bottom: 0; }

.insights-latest__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.insights-latest__card:hover { background: rgba(255, 255, 255, 0.04); }

.insights-latest__image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #1a1d2e;
  overflow: hidden;
}
.insights-latest__image img { width: 100%; height: 100%; object-fit: cover; }
.insights-latest__image-placeholder {
  width: 100%; height: 100%;
  background: radial-gradient(circle, #1a1d2e 0%, #0d0f1a 100%);
}

.insights-latest__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: #0d0f1a;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

.insights-latest__content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insights-latest__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.insights-latest__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: #fff;
}

.insights-latest__excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #a8acbc;
  margin-bottom: 2rem;
}

.insights-latest__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #6b6f82;
  margin-bottom: 1.5rem;
}

.insights-latest__cta {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

/* ═══ SECTIONS ═══ */
.insights-section { margin-bottom: 5rem; }

.insights-section__title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #6b6f82;
  margin-bottom: 1.5rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.insights-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* ═══ CARDS ═══ */
.insights-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-top: 2px solid var(--accent, #EB9001);
  padding-top: 1.5rem;
  transition: transform 0.2s ease;
}
.insights-card:hover { transform: translateY(-2px); }

.insights-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.insights-card__title {
  font-family: 'IBM Plex Serif', serif;
  font-size: 1.35rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 400;
}

.insights-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #a8acbc;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insights-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b6f82;
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══ ARCHIVE ROWS ═══ */
.insights-section__archive {
  display: flex;
  flex-direction: column;
}

.insights-archive-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease;
}
.insights-archive-row:hover { background: rgba(255, 255, 255, 0.02); }

.insights-archive-row__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-top: 0.5rem;
}

.insights-archive-row__content h4 {
  font-family: 'IBM Plex Serif', serif;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.5rem;
  font-weight: 400;
}
.insights-archive-row__content p {
  font-size: 0.85rem;
  color: #a8acbc;
  line-height: 1.5;
  margin: 0;
}

.insights-archive-row__date {
  font-size: 0.85rem;
  color: #6b6f82;
  font-style: italic;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .insights-latest__card { grid-template-columns: 1fr; }
  .insights-latest__content { padding: 2rem 1.5rem; }
  .insights-page { padding: 3rem 1rem 5rem; }
}
