.posts_container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 10px;
  padding-right: 10px;
}

.post_container {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.post_image_link {
  width: 150px !important;
  height: 150px !important;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}

.post_image {
  width: 150px !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post_image_link:hover .post_image {
  transform: scale(1.08);
}

.content_container {
  width: calc(100% - 166px);
}

.post_title {
  font-weight: 500;
  margin-bottom: 0px;
}

.post_date {
  font-size: medium;
  color: grey;
}

.post_preview {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: medium;
}

.read_more_link {
  margin-left: 5px;
}

@media (min-width: 1280px) {
  .posts_container {
    display: flex;
    flex-direction: row;
    gap: 64px;
    padding-left: 0;
    padding-right: 0;
  }

  .post_container {
    gap: 16px;
    width: 50%;
  }

  .content_container {
    width: calc(100% - 216px);
  }

  .post_image_link {
    width: 200px !important;
    height: 200px !important;
  }

  .post_image {
    width: 200px !important;
  }
}

@media (min-width: 1440px) {
  .content_container {
    width: calc(100% - 316px);
  }

  .post_image_link {
    width: 300px !important;
    height: 300px !important;
  }

  .post_image {
    width: 300px !important;
  }
}
