.comp-post-teaser {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5em;
  color: var(--wp--preset--color--black);
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .comp-post-teaser {
    flex-direction: column;
  }
}
.comp-post-teaser .image-container {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .comp-post-teaser .image-container {
    width: 100%;
  }
}
.comp-post-teaser .image-container .comp-image .image-box {
  padding-top: 75% !important;
}
.comp-post-teaser .image-container .comp-image .image-box img {
  object-fit: cover;
}
.comp-post-teaser .image-container .plus {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--wp--preset--color--white);
  font-weight: 700;
  line-height: 1;
  padding: 0.5em;
}
.comp-post-teaser .textcontent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  gap: 1em;
  width: 100%;
  max-height: 16rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .comp-post-teaser .textcontent {
    max-height: 12rem;
  }
}
@media (max-width: 767px) {
  .comp-post-teaser .textcontent {
    width: 100%;
  }
}
.comp-post-teaser .textcontent::after {
  content: "";
  position: absolute;
  top: calc(16rem - 3rem);
  left: 0;
  width: 100%;
  height: 3rem;
  background: white;
  background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 991px) {
  .comp-post-teaser .textcontent::after {
    top: calc(12rem - 3rem);
  }
}
.comp-post-teaser .textcontent .meta {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
}
@media (max-width: 991px) {
  .comp-post-teaser .textcontent .meta {
    font-size: 0.75em;
  }
}
@media (max-width: 767px) {
  .comp-post-teaser .textcontent .meta {
    flex-direction: column;
  }
}
.comp-post-teaser .textcontent .meta span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.comp-post-teaser .textcontent .meta span.reading-time {
  flex-shrink: 0;
}
.comp-post-teaser .textcontent .meta span.reading-time svg {
  width: auto;
  height: 1.25em;
  margin-right: 0.5em;
}
.comp-post-teaser .textcontent .meta .reading-time-date-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5em;
  font-size: 0.8em;
}
.comp-post-teaser .textcontent .title {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin: 0;
  font-size: 1.2em;
  font-family: "Montserrat";
}
.comp-post-teaser .textcontent .excerpt {
  font-size: 0.9rem;
}
.comp-post-teaser .read-more {
  color: var(--wp--preset--color--red);
  transform: opacity 150ms;
  padding: 1em;
  margin: 0 -1em;
  z-index: 1;
}
.comp-post-teaser .read-more:hover {
  opacity: 0.8;
}