.px-news {
  width: var(--baseWidth);
  max-width: var(--maxWidth);
  margin: auto;
}
.px-news .postsloop {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: clamp(1rem, calc(0.2666666667rem + 2.9333333333vw), 2.2222222222rem);
  grid-row-gap: clamp(1rem, calc(-1.0666666667rem + 8.2666666667vw), 4.4444444444rem);
}
.px-news .postsloop .article {
  flex-basis: calc(33.3% - 30px);
  min-width: 280px;
  flex-grow: 1;
  background-color: var(--roseColor);
  display: flex;
  position: relative;
  border-radius: 5px;
  border: 2px solid var(--mainColor);
}
.px-news .postsloop .article:hover {
  transform: translateY(-10px);
}
.px-news .postsloop .article .category {
  color: var(--greyLight);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: normal;
}
.px-news .postsloop .article:nth-of-type(1) {
  grid-area: 1 / 1 / 3 / 2;
  flex-direction: column;
}
.px-news .postsloop .article:nth-of-type(1) .content .entry-title {
  font-size: clamp(1.0555555556rem, calc(0.7555555556rem + 1.2vw), 1.5555555556rem);
}
.px-news .postsloop .article:nth-of-type(1) .post-thumbnail {
  flex-grow: 1;
  flex-basis: 380px;
  flex-shrink: 0;
}
.px-news .postsloop .article:nth-of-type(2) {
  display: flex;
  grid-area: 1 / 2 / 2 / 3;
}
.px-news .postsloop .article:nth-of-type(2) .post-thumbnail {
  width: 289px;
  flex-shrink: 0;
}
.px-news .postsloop .article:nth-of-type(2)::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--greyVeryLight);
}
@media screen and (max-width: 1300px) {
  .px-news .postsloop .article:nth-of-type(2)::after {
    display: none;
  }
}
.px-news .postsloop .article:nth-of-type(3) {
  grid-area: 2 / 2 / 3 / 3;
}
.px-news .postsloop .article:nth-of-type(3) .post-thumbnail {
  width: 289px;
  flex-shrink: 0;
}
.px-news .postsloop .article:hover {
  transform: translateY(-10px);
}
.px-news .postsloop .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: clamp(1.1111111111rem, calc(0.7777777778rem + 1.3333333333vw), 1.6666666667rem);
}
.px-news .postsloop .content .btn-more {
  margin-top: auto;
  color: var(--mainColor);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
}
.px-news .postsloop .content .date {
  color: var(--greyLight);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  margin-bottom: 0px;
}
.px-news .postsloop .content .excerpt {
  margin-bottom: clamp(0.8333333333rem, calc(0.6666666667rem + 0.6666666667vw), 1.1111111111rem);
  color: var(--fontColor);
  font-size: 16px;
}
.px-news .postsloop .post-thumbnail {
  position: relative;
  min-height: 253px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.px-news .postsloop .post-thumbnail img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  transition: var(--baseTransition);
}
@media screen and (max-width: 1300px) {
  .px-news .postsloop {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-rows: unset;
    gap: 20px 30px;
  }
  .px-news .postsloop .article .post-thumbnail {
    height: 253px;
  }
  .px-news .postsloop .article:nth-of-type(1) {
    grid-area: unset;
  }
  .px-news .postsloop .article:nth-of-type(1) .post-thumbnail {
    flex-basis: unset;
    flex-shrink: unset;
    flex-grow: unset;
  }
  .px-news .postsloop .article:nth-of-type(2) {
    grid-area: unset;
    flex-direction: column;
  }
  .px-news .postsloop .article:nth-of-type(2) .post-thumbnail {
    width: unset;
  }
  .px-news .postsloop .article:nth-of-type(3) {
    grid-area: unset;
    flex-direction: column;
  }
  .px-news .postsloop .article:nth-of-type(3) .post-thumbnail {
    width: unset;
  }
}
.fl .px-news {
  width: 100%;
}
