.insights-list {
  padding: 0;
  color: #1f2937;
  background: #fff;
}

.insights-list__hero {
  padding: 40px 0 52px;
  background: #f8fafc;
  text-align: center;
}

.insights-list__title {
  margin: 0;
  color: #111827;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
}

.insights-list__content {
  padding-top: 64px;
  padding-bottom: 80px;
}

.insights-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.insights-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.insights-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.insights-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.insights-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.4rem;
}

.insights-card__tags span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 700;
}

.insights-card__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
}

.insights-card__title a {
  color: #111827;
  text-decoration: none;
}

.insights-card__title a:hover,
.insights-card__title a:focus {
  color: #15803d;
}

.insights-card__summary {
  margin: 1rem 0 0.85rem;
  color: #475569;
  font-size: 0.98rem !important;
  line-height: 1.65;
}

.insights-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.82rem;
}

.insights-card__footer a {
  color: #15803d;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.insights-list .pager {
  margin: 48px 0 0;
}

.insights-list .pager__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insights-list .pager__item {
  display: block;
  margin: 0;
  padding: 0;
}

.insights-list .pager__item a {
  display: inline-flex;
  min-width: 2.5rem;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border: 1px solid #d7e2ec;
  border-radius: 0.65rem;
  background: #fff;
  color: #166534;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.insights-list .pager__item a:hover,
.insights-list .pager__item a:focus-visible {
  border-color: #16a34a;
  background: #f0fdf4;
  color: #14532d;
  outline: none;
}

.insights-list .pager__item.is-active a {
  border-color: #15803d;
  background: #15803d;
  color: #fff;
}

.insights-list .pager__item--ellipsis {
  padding: 0 0.2rem;
  color: #64748b;
}

.insights-list__empty {
  padding: 64px 24px;
  border-radius: 16px;
  background: #f8fafc;
  text-align: center;
}

@media (max-width: 991px) {
  .insights-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .insights-list__hero {
    padding: 32px 0 40px;
  }

  .insights-list__content {
    padding-top: 40px;
    padding-bottom: 52px;
  }

  .insights-list__grid {
    grid-template-columns: 1fr;
  }

  .insights-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .insights-list .pager__items {
    gap: 0.35rem;
  }

  .insights-list .pager__item a {
    min-width: 2.25rem;
    min-height: 2.25rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.82rem;
  }
}
