.post-inner {
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 50px;
  min-height: 65vh;
}

.post-inner h1 {
  font-size: 64px !important;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.job-offer,
.news-article {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
}

.job-offer img,
.news-article img {
  height: 150px;
  width: 100%;
  object-fit: contain;
}

.post-link {
  display: inline-block;
  margin-top: 10px;
  background: #0073aa;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
}

.post-link:hover {
  background: #005a87;
}

.job-offer-link,
.news-link {
  display: flex;
  justify-content: center;
}

.job-offer-link a,
.news-link a {
  padding: 10px 30px;
  background-color: var(--main-purple);
}

.job-offer-link a:hover,
.news-link a:hover {
  background-color: var(--main-purple-hover);
}

.post-inner h3 {
  margin: 0;
  font-size: 17px !important;
  text-align: center;
  margin-top: 5px;
  min-height: 40px;
}
.back-to-jobs,
.back-to-news {
  display: flex;
  justify-content: center;
}
.back-to-jobs a,
.back-to-news a {
  padding: 10px 30px;
  background-color: var(--main-purple);
  color: white;
  text-decoration: none;
  border-radius: 10px;
}
.back-to-jobs:hover a,
.back-to-news:hover a {
  background-color: var(--main-purple-hover);
}
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1300px) {
  .posts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
