.homeInsightsSection .sectionHead {
  max-width: 840px;
}

.homeInsightsGrid {
  align-items: stretch;
}

.homeInsightsGrid.homeInsightsGrid1 {
  grid-template-columns: minmax(0, 540px);
}

.homeInsightsGrid.homeInsightsGrid2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1060px;
}

.homeInsightsGrid .archiveCard {
  display: flex;
  height: 100%;
  flex-direction: column;
  border-radius: 24px;
  background: #fff;
}

.homeInsightsGrid .archiveImage {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.homeInsightsGrid .archiveImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homeInsightsGrid .archiveBody {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 18px;
}

.homeInsightsGrid .archiveContent {
  display: grid;
  gap: 14px;
}

.homeInsightsGrid .archiveMeta,
.homeInsightsGrid h3,
.homeInsightsGrid p {
  margin: 0;
}

.homeInsightsGrid h3 {
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  line-height: 1.3;
}

.homeInsightsGrid h3 a {
  color: var(--core-ink);
}

.homeInsightsGrid h3 a:hover,
.homeInsightsGrid h3 a:focus {
  color: var(--core-blue);
}

.homeInsightsGrid .archiveActions {
  display: grid;
  gap: 16px;
  margin-top: auto;
}

.homeInsightsGrid .coreLinkLine,
.homeInsightsArchiveLink .coreLinkLine {
  width: fit-content;
  max-width: 100%;
}

.homeInsightsArchiveLink {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .homeInsightsGrid.homeInsightsGrid1 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .homeInsightsGrid.homeInsightsGrid2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .homeInsightsArchiveLink {
    justify-content: flex-start;
  }
}
