.insights-section {
  background: #fff;
}

.insights-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
}

.insights-heading .eyebrow {
  margin-bottom: 18px;
}

.insights-heading-side {
  display: flex;
  align-items: flex-end;
  gap: 54px;
}

.insights-heading-side > p {
  color: var(--muted);
  font-size: .925rem;
  line-height: 1.8;
}

.blog-all {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 10px 0;
  border-bottom: 1px solid #a5b4a8;
  font-size: .875rem;
  white-space: nowrap;
}

.blog-all span {
  font-size: 1.2rem;
  transition: transform .2s;
}

.blog-all:hover {
  color: var(--green);
}

.blog-all:hover span {
  transform: translate(3px, -3px);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.insights-grid[data-count="5"],
.insights-grid[data-count="6"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.insight-card > a {
  display: flex;
  flex-direction: column;
  min-height: 326px;
  padding: 28px 30px;
}

.insight-card:hover {
  transform: translateY(-3px);
  border-color: #9db8a5;
  box-shadow: 0 18px 42px rgba(32, 62, 50, .08);
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  font-size: .75rem;
}

.insight-meta > span {
  color: var(--green);
  font-weight: 600;
}

.insight-meta time {
  color: #7c857e;
  letter-spacing: .02em;
}

.insight-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -.045em;
}

.insight-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 16px;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.insight-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 25px;
  color: var(--forest);
  font-size: .8rem;
  font-weight: 600;
}

.insight-read > span {
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform .2s;
}

.insight-card:hover .insight-read > span {
  transform: translate(3px, -3px);
}

.feed-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 17px;
  color: #778179;
  font-size: .75rem;
}

.feed-note > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(108, 168, 131, .12);
}

.feed-note.is-fallback > span {
  background: #a6aaa6;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .insights-heading {
    gap: 36px;
  }

  .insights-heading-side {
    gap: 28px;
  }

  .insight-card > a {
    padding: 25px;
  }
}

@media (max-width: 900px) {
  .insights-heading-side > p {
    display: none;
  }

  .insights-grid[data-count="5"],
  .insights-grid[data-count="6"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .insights-heading {
    display: block;
    padding-bottom: 25px;
  }

  .insights-heading-side {
    display: block;
    margin-top: 18px;
  }

  .blog-all {
    gap: 22px;
  }

  .insights-grid,
  .insights-grid[data-count="5"],
  .insights-grid[data-count="6"] {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .insight-card > a {
    min-height: 285px;
    padding: 24px 22px;
  }

  .insight-card h3 {
    font-size: 1.18rem;
  }

  .feed-note {
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.6;
  }

  .feed-note > span {
    flex: none;
    margin-top: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insight-card,
  .insight-read > span,
  .blog-all span {
    transition: none;
  }
}
