.px-teaser .postsloop {
  --card-base-width: calc((100% - 60px) / 3);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.px-teaser .postsloop:has(> .teaser-single:only-child), .px-teaser .postsloop:has(> .teaser-single:first-child:nth-last-child(2)) {
  justify-content: center;
}
@media (max-width: 1044px) and (min-width: 769px) {
  .px-teaser .postsloop {
    --card-base-width: calc((100% - 30px) / 2);
  }
}
.px-teaser .teaser-single {
  flex: 1 1 var(--card-base-width);
  max-width: var(--card-base-width);
  min-width: 300px;
  display: flex;
}
.px-teaser .teaser-single article {
  width: 100%;
}
.px-teaser .teaser-single > article > a,
.px-teaser .teaser-single > article > div {
  display: flex;
  width: 100%;
  height: 100%;
}
.px-teaser .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.px-teaser .content .content-inner {
  width: 100%;
  padding: clamp(1.1111111111rem, 0.960960961rem + 0.8445945946vw, 1.6666666667rem);
  background: var(--glasslook);
  border-radius: 20px;
  box-shadow: var(--boxShadowSmall);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.px-teaser .content .date {
  font-size: 15px;
  color: var(--gray);
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.px-teaser .content .entry-title {
  color: var(--fontColor);
  line-height: 1.25;
  font-family: var(--headline);
  margin-bottom: 20px;
}
.px-teaser .content .excerpt {
  color: var(--fontColor);
  margin-bottom: clamp(0.8333333333rem, 0.6081081081rem + 1.2668918919vw, 1.6666666667rem);
}
.px-teaser .content .post-thumbnail {
  position: relative;
  height: clamp(11.1111111111rem, 8.1081081081rem + 16.8918918919vw, 22.2222222222rem);
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 10px;
}
.px-teaser .content .post-thumbnail.no-image {
  background: #ddd;
}
.px-teaser .content .post-thumbnail img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}
.px-teaser .content .button {
  --btn-size: 50px;
  --btn-icon-size: 32px;
  --btn-padding-x: 20px;
  --btn-gap: 15px;
  margin-top: auto;
  margin-right: 0;
  margin-left: auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15) inset;
  padding: calc((var(--btn-size) - var(--btn-icon-size)) / 2);
  width: auto;
  height: var(--btn-size);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  transition: var(--baseTransition);
}
.px-teaser .content .button .btn-text {
  order: 1;
  display: grid;
  grid-template-columns: 0fr;
  min-width: 0;
  opacity: 0;
  color: var(--fontColor);
  font-size: 17px;
  font-weight: 700;
  line-height: normal;
  transition: var(--baseTransition);
}
.px-teaser .content .button .btn-text span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.px-teaser .content .button .btn-icon {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--btn-icon-size);
  height: var(--btn-icon-size);
  border-radius: 50px;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  flex-shrink: 0;
}
.px-teaser .content .button::after {
  display: none;
}
.px-teaser .teaser-single:hover .content .button {
  gap: var(--btn-gap);
  padding: calc((var(--btn-size) - var(--btn-icon-size)) / 2) var(--btn-padding-x);
}
.px-teaser .teaser-single:hover .content .button .btn-text {
  grid-template-columns: 1fr;
  opacity: 1;
}
@media (max-width: 768px) {
  .px-teaser .teaser-single {
    flex-basis: 100%;
    max-width: 100%;
  }
}
.px-teaser.horizontal-view .teaser-single {
  flex-basis: 100%;
  max-width: 100%;
  min-width: 100%;
}
.px-teaser.horizontal-view .content {
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
}
.px-teaser.horizontal-view .content .post-thumbnail {
  flex: 0 0 min(49%, 560px);
  width: auto;
  height: auto;
  min-height: 0;
  margin-bottom: 0;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 0 20px 20px 20px;
}
.px-teaser.horizontal-view .content .content-inner {
  flex: 1 1 auto;
  width: auto;
  min-height: 0;
  border-radius: 25px;
  padding: clamp(1.1111111111rem, 0.960960961rem + 0.8445945946vw, 1.6666666667rem);
}
.px-teaser.horizontal-view .content .entry-title {
  margin-bottom: clamp(0.8888888889rem, 0.7687687688rem + 0.6756756757vw, 1.3333333333rem);
  font-size: clamp(1rem, 0.9399399399rem + 0.3378378378vw, 1.2222222222rem);
}
.px-teaser.horizontal-view .content .excerpt {
  display: block;
  margin-bottom: clamp(0.8888888889rem, 0.7687687688rem + 0.6756756757vw, 1.3333333333rem);
}
.px-teaser.horizontal-view .content .button {
  --btn-size: 40px;
  --btn-icon-size: 24px;
  --btn-padding-x: 16px;
  --btn-gap: 12px;
}
.px-teaser.horizontal-view .content .button .btn-icon {
  background-size: 12px 12px;
}
@media (max-width: 1024px) {
  .px-teaser.horizontal-view .content {
    flex-direction: column;
  }
  .px-teaser.horizontal-view .content .post-thumbnail {
    width: 100%;
    min-height: clamp(12.2222222222rem, 10.4204204204rem + 10.1351351351vw, 18.8888888889rem);
  }
  .px-teaser.horizontal-view .content .content-inner {
    min-height: auto;
  }
}
.px-teaser.small-view .postsloop {
  --card-base-width: calc((100% - 25px) / 2);
  gap: 25px;
}
.px-teaser.small-view .teaser-single {
  min-width: 240px;
}
.px-teaser.small-view .content .post-thumbnail {
  height: 250px;
  border-radius: 0 20px 20px 20px;
}
.px-teaser.small-view .content .content-inner {
  padding: clamp(1.1111111111rem, 0.960960961rem + 0.8445945946vw, 1.6666666667rem);
}
.px-teaser.small-view .content .date {
  font-size: 14px;
  margin-bottom: 8px;
}
.px-teaser.small-view .content .entry-title {
  font-size: clamp(1rem, 0.9399399399rem + 0.3378378378vw, 1.2222222222rem);
  margin-bottom: 20px;
}
.px-teaser.small-view .content .button {
  --btn-size: 40px;
  --btn-icon-size: 24px;
  --btn-padding-x: 16px;
  --btn-gap: 12px;
}
.px-teaser.small-view .content .button .btn-icon {
  background-size: 12px 12px;
}