.post-container {
  max-width: 1200px;
  margin: 10rem 10rem;
}
@media (min-width: calc(1200px + 20rem)) {
  .post-container {
    margin: 10rem auto;
  }
}
@media (max-width: 1280px) {
  .post-container {
    margin: 7.5rem 7.5rem;
  }
}
@media (max-width: 1024px) {
  .post-container {
    margin: 7.5rem 3.75rem;
  }
}
@media (max-width: 768px) {
  .post-container {
    margin: 7.5rem 5rem;
  }
}
@media (max-width: 640px) {
  .post-container {
    margin: 7.5rem 3rem;
  }
}
@media (max-width: 448px) {
  .post-container {
    margin: 5rem 1.25rem;
  }
}
.post-container .blocks {
  display: flex;
  flex-direction: column;
  margin: 2.5rem 0;
  align-items: flex-start;
}
.post-container .blocks .block-img {
  width: 100%;
  height: 400px;
  background: #D9D9D9;
  border-radius: 5px 5px 5px 0;
  overflow: hidden;
}
.post-container .blocks .block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-container .blocks .block-text {
  width: 70%;
  border-radius: 0 0 5px 5px;
  background: #3A6661;
  padding: 2.5rem;
  color: #fff;
}
.post-container .blocks .block-text a {
  text-decoration: underline;
}
.post-container .blocks .block-text a:hover {
  color: #000;
}
.post-container .post-content {
  line-height: 1.75rem;
}
.post-container .post-content a {
  font-weight: 700;
  color: #c8d400;
}
.post-container .post-content a:hover {
  text-decoration: underline;
}
.post-container .post-content p, .post-container .post-content ul {
  margin-bottom: 1rem;
}
.post-container .link {
  margin-top: 2.5rem;
  text-align: right;
}
@media (max-width: 768px) {
  .post-container .blocks .block-text {
    width: 100%;
  }
  .post-container .blocks .block-img {
    border-radius: 5px 5px 0 0;
  }
}
.post-container .post-images {
  margin-top: 2.5rem;
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.post-container .post-images img {
  width: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: 5px;
}