.px-news .news-header {
  display: flex;
  gap: 100px;
  align-items: center;
  margin-bottom: clamp(1.1764705882rem, 0.3815580286rem + 4.222972973vw, 4.1176470588rem);
}
.px-news .news-header .headline {
  width: 28%;
  margin-bottom: 0;
}
.px-news .news-header .text {
  width: 40%;
}
.px-news .news-header .button-wrap {
  width: 32%;
  display: flex;
  justify-content: flex-end;
}
.px-news .news-header .text {
  position: relative;
}
.px-news .news-header .text:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--grey);
  position: absolute;
  top: 0;
  left: -50px;
}
.px-news .news-header .text p {
  margin-bottom: 0;
}
@media (max-width: 960px) {
  .px-news .news-header {
    gap: 20px 50px;
  }
}
@media (max-width: 768px) {
  .px-news .news-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .px-news .news-header .headline {
    width: 100%;
  }
  .px-news .news-header .text {
    width: 100%;
  }
  .px-news .news-header .text:before {
    display: none;
  }
  .px-news .news-header .button-wrap {
    width: 100%;
  }
}
.px-news .postsloop {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.px-news .postsloop article {
  flex-basis: calc(33.3% - 20px);
  min-width: 300px;
  flex-grow: 0;
}
@media (max-width: 670px) {
  .px-news .postsloop article {
    flex-basis: 100%;
  }
}
.px-news .postsloop .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.px-news .postsloop .content .button {
  margin-top: auto;
}
.px-news .postsloop .content .date {
  font-size: 15px;
  color: var(--fontColor);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: clamp(0.5882352941rem, 0.2702702703rem + 1.6891891892vw, 1.7647058824rem);
  font-family: var(--headline);
}
.px-news .postsloop .content .entry-title {
  margin-bottom: 10px;
  margin-top: 5px;
}
.px-news .postsloop .content .excerpt {
  color: var(--fontColor);
  margin-bottom: clamp(0.8823529412rem, 0.6438791733rem + 1.2668918919vw, 1.7647058824rem);
}
.px-news .postsloop .content .post-thumbnail {
  position: relative;
  min-height: clamp(8.8235294118rem, 7.5516693164rem + 6.7567567568vw, 13.5294117647rem);
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: clamp(0.5882352941rem, 0.3179650238rem + 1.4358108108vw, 1.5882352941rem);
  width: 100%;
}
.px-news .postsloop .content .post-thumbnail img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.px-news .postsloop .content .post-category {
  padding: 11px 20px;
  border-bottom-left-radius: 8px;
  background: var(--secondColor);
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: none;
  font-size: 15px;
  display: none;
}
.px-news .postsloop .content .button-arrow-simple {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: var(--headline);
  color: var(--fontColor);
  padding-right: 20px;
  position: relative;
}
.px-news .postsloop .content .button-arrow-simple:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url(img/arrow-pink.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0);
  transition: var(--baseTransition);
}
.px-news .postsloop .content .button-arrow-simple:hover {
  color: var(--mainColor);
}
.px-news .postsloop .content .button-arrow-simple:hover:before {
  filter: none;
  right: -5px;
}
