/* ────────────────────────────────
   INSIGHTS GRID — article cards with a date badge
──────────────────────────────── */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.insight-card {
  position: relative;
  background: var(--white);
  overflow: hidden;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--surface);
  box-shadow:
    0 1px 2px rgba(10, 26, 47, 0.04),
    0 1px 8px rgba(10, 26, 47, 0.05);
  transition: box-shadow 0.25s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 36px rgba(10, 26, 47, 0.12);
}

.insight-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-card__media img {
  transform: scale(1.05);
}

.insight-card__date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  border-radius: 10px;
  padding: 7px 12px;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 12px rgba(10, 26, 47, 0.18);
}

.insight-card__day {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.insight-card__month {
  display: block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
}

.insight-card__body {
  padding: 20px;
}

.insight-card__category {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 10px;
}

.insight-card__title {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__title a {
  color: var(--navy);
  transition: color 0.2s ease;
}

.insight-card__title a:hover {
  color: var(--steel);
}

.insight-card__excerpt {
  font-size: 13px;
  color: var(--graphite);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ────────────────────────────────
   RESPONSIVE
──────────────────────────────── */
@media (max-width: 1024px) {
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .insights-topics {
    padding-top: 56px !important;
  }

  .insight-card__media {
    aspect-ratio: 3 / 2;
  }
}
@media (max-width: 560px) {
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .insight-card__media {
    aspect-ratio: 2 / 1;
  }
}
