.comp-teaser {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  position: relative;
  padding: 1rem;
  text-decoration: none;
}
@media (max-width: 991px) {
  .comp-teaser {
    width: 100%;
  }
}
.comp-teaser:hover {
  opacity: 1;
}
.comp-teaser .icon {
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: 1rem;
  left: 50%;
  z-index: 1;
  flex-shrink: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.comp-teaser .teaser-inner {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  position: relative;
  border: solid 0.2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.comp-teaser .teaser-inner.orange-background {
  background-color: var(--wp--preset--color--orange);
  color: var(--wp--preset--color--white);
  border: none;
}
.comp-teaser .teaser-inner.orange-border {
  background-color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--orange);
  color: var(--wp--preset--color--orange);
}
.comp-teaser .teaser-inner.turquoise-background {
  background-color: var(--wp--preset--color--whiteturquoise);
  color: var(--wp--preset--color--black);
  border: none;
}
.comp-teaser .teaser-inner.turquoise-border {
  background-color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--darkturquoise);
  color: var(--wp--preset--color--black);
}
.comp-teaser .teaser-inner.has-icon .teaser-content {
  padding-top: 4rem;
}
.comp-teaser .teaser-inner.has-icon.has-image .teaser-content {
  padding-top: 2rem;
}
.comp-teaser .teaser-inner .teaser-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  height: 100%;
}
.comp-teaser .teaser-inner .teaser-content .text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.comp-teaser .teaser-inner .teaser-content .text-section h3 {
  margin: 0;
  text-align: center;
  font-family: "Allround Gothic Demi";
  font-size: 1.4em;
}
.comp-teaser .teaser-inner .teaser-content .text-section .text {
  text-align: center;
  margin: -1rem 0;
}
.comp-teaser .teaser-inner .teaser-content .sections {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.comp-teaser .teaser-inner .teaser-content .sections a {
  color: inherit;
}
.comp-teaser .teaser-inner .teaser-content .sections .section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  text-align: center;
}
.comp-teaser .teaser-inner .teaser-content .sections .section .comp-image {
  width: 2rem;
}
.comp-teaser .teaser-inner .teaser-content .sections .section .text-large {
  font-size: 1.2em;
  font-weight: 700;
  font-family: "Allround Gothic Demi";
}
.comp-teaser .teaser-inner .teaser-content .buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 1rem;
  margin-top: auto;
}
.comp-teaser .teaser-inner .teaser-content .buttons.align-top {
  margin-top: 0;
  margin-bottom: auto;
}