/* POST STANDART */
.post {
  width: 31%;
  margin: 0 1%;
  margin-bottom: 20px;
  line-height: 22px;
  display: flex;
  flex-direction: column;
}
.post:nth-last-child(2) {
  margin-right: auto;
}
.post-image {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.post-image-overlay {
  position: absolute;
  /*    background-color: #fdd71c;*/
  background: linear-gradient(180deg, #fdd71c33 0%, #fdd71c 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 5px;
  opacity: 0;
}
.post-image:hover .post-image-overlay {
  opacity: 0.3;
}
.post-image img {
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.post-meta {
  font-weight: bold;
  font-size: 10px;
  line-height: 19px;
  text-transform: uppercase;
  color: #d6d6d0;
  position: relative;
  margin: 10px 0;
}
.post-title {
  font-weight: bold;
  font-size: 16px;
  color: #303030;
  position: relative;
}
a.post-title:hover {
  color: #303030;
  text-decoration: underline;
}
.post-content {
  font-weight: normal;
  font-size: 13px;
  line-height: 20px;
  color: #7f7f7f;
}
.post-read-more {
  text-decoration: underline;
  margin-left: 5px;
}
@media screen and (max-width: 1024px) {
  .post {
    line-height: 18px;
  }
}
@media screen and (max-width: 950px) {
  .post {
    width: 48%;
  }
}
@media screen and (max-width: 400px) {
  .post {
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
  }
  .post .post-image img {
  }
}

/* POST MID */
.post.mid {
  width: 48%;
}
@media screen and (max-width: 400px) {
  .post.mid {
    width: 100%;
  }
}

/* POST BIG */
.post.big {
  width: 65%;
}
.post-overlay {
  border-radius: 5px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}
.big .post-meta,
.big .post-title,
.big .post-read-more {
  color: #fff;
  position: absolute;
  left: 30px;
  margin: 0;
}
.big .post-meta {
  top: 30px;
}
.big .post-title {
  top: 60px;
  font-size: 24px;
  line-height: 30px;
  /*    max-width: 407px;*/
  padding-right: 30px;
}
.big .post-read-more {
  color: #fff;
  left: auto;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 950px) {
  .post.big {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .big .post-meta {
    top: 15px;
  }
  .big .post-meta,
  .big .post-title {
    left: 15px;
  }
  .big .post-read-more {
    right: 15px;
    bottom: 15px;
    font-size: 12px;
  }
  .big .post-title {
    line-height: 25px;
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  .big .post-title {
    font-size: 18px;
  }
}
