.insights__list {
  padding: 60px 30px;

  @media screen and (max-width: 768px) {
    padding: 30px;
  }
}

.insights__list.page {
  padding: 120px 30px;
}

.insights__back-button {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 2px solid #86c5ca;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.insights__separator {
  border: none;
  height: 1px;
  background: #ffffff80;
  margin-top: 24px;
  margin-bottom: 45px;
}

.insights__posts {
  margin: 45px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;

  @media screen and (min-width: 768px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.insights__post {
  display: flex;
}

.insights__link {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.insights__posts article a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.insights__content {
  height: 100%;
  padding: 28px 22px 36px 22px;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.insights__date {
  color: #86c5ca;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  margin: 0;
}

.insights__title {
  color: #000;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  margin: 0;
}

.insights__title.insights-grid {
  color: #0f0e0e;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  margin: 0;
}

.insights__pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.insights__pagination__prev {
  display: flex;
  align-items: center;
  margin-right: 12px;
}

.insights__pagination__next {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.insights__cta-button {
  color: #86c5ca;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  gap: 8px;
  position: relative;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}
