.recent-posts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: -20px;
  margin-right: -20px;
  gap: 40px;
}

.post-preview {
  width: 50%;
  max-width: 360px;
  height: 250px;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--blue-green);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

@media (max-width: 600px) {
  .recent-posts {
    flex-direction: column;
    align-items: center;
    margin: 0px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .post-preview {
    width: 100%;
    max-width: 100%;
  }
}

.post-title {
  margin-top: 5px;
  margin-bottom: 0px;
}

.post-date {
  font-size: 0.8em;
  margin-bottom: 1em;
}

.post-abstract {
  font-size: 0.8em;
  line-height: 1.2em;
  margin-top: 0px;
  overflow: hidden;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}