.px-news .inner {
  max-width: var(--maxWidth);
  width: var(--baseWidth);
  margin: 0 auto;
}
.px-news .inner .news-footer {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.postsloop > article {
  display: flex;
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .postsloop > article {
    display: block;
  }
}
.postsloop > article .postimagesection {
  flex: 0 0 300px;
  position: relative;
  margin: 0 20px 0 0;
}
@media (max-width: 768px) {
  .postsloop > article .postimagesection {
    margin: 10px 0;
  }
}
.postsloop > article .postimagesection img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .postsloop > article .postimagesection img {
    position: relative;
    width: auto;
    height: auto;
    max-width: 300px;
    max-height: 300px;
    object-fit: contain;
  }
}
.postsloop > article .content {
  flex: 1;
}
.postsloop > article .content .entry-header {
  margin-bottom: 5px;
}
.postsloop > article .content .entry-header h3 {
  margin: 0;
  padding: 0;
}
.postsloop > article .content .entry-header p {
  font-size: 14px;
  padding: 0 0 5px 0;
}
.postsloop > article .content .btn {
  margin-top: 10px;
}
.postsloop > article .content .introtext {
  margin-top: 0;
}
.postsloop > article:nth-child(odd) {
  flex-direction: row-reverse;
  background: var(--backgroundColorLight);
}
.postsloop > article:nth-child(odd) .postimagesection {
  margin: 0 0 0 20px;
}
@media (max-width: 768px) {
  .postsloop > article:nth-child(odd) .postimagesection {
    margin: 10px 0;
  }
}
.wp-block-columns .px-news .inner, .px-frame-layout .px-news .inner, .accordion-content .px-news .inner, .tab_wrapper .px-news .inner {
  width: 100%;
}
