/**
 * @file
 * Callout Card styles.
 */
.block--callout-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
  border-radius: 0.5rem;
  height: 100%;
  position: relative;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}
@media (max-width: 47.9375rem) {
  .block--callout-card {
    display: block;
    height: auto;
  }
}
.is-style-page-sidebar .block--callout-card {
  height: auto;
  margin: 3.75rem 0;
}
@media (max-width: 47.9375rem) {
  .is-style-page-sidebar .block--callout-card {
    margin: 2rem 0;
  }
}
.is-style-narrow-padding .block--callout-card {
  margin: 0;
  height: 100%;
}
.alignwide h3 + .block--callout-card {
  height: auto;
}
.block--callout-card.is-style-image-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  min-height: clamp(320px, 20.1vw, 390px);
}
.block--callout-card.--has-link:hover {
  -webkit-transform: translate3d(0, -0.75rem, 0);
          transform: translate3d(0, -0.75rem, 0);
}

.callout-card__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.is-style-image-left .callout-card__image {
  width: 43%;
}
@media (max-width: 47.9375rem) {
  .is-style-image-left .callout-card__image {
    width: 100%;
  }
}
.is-style-page-sidebar .is-style-image-left .callout-card__image {
  width: 37%;
}
@media (max-width: 47.9375rem) {
  .is-style-page-sidebar .is-style-image-left .callout-card__image {
    width: 100%;
  }
}
.callout-card__image img {
  display: block;
  width: 100%;
  border-radius: 0.5rem 0.5rem 0 0;
}
.is-style-image-left .callout-card__image img {
  border-radius: 0.5rem 0 0 0.5rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 47.9375rem) {
  .is-style-image-left .callout-card__image img {
    border-radius: 0.5rem 0.5rem 0 0;
    max-height: 16.875rem;
  }
}

.callout-card__content {
  padding: 6% 6.5%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 47.9375rem) {
  .callout-card__content {
    height: auto;
    padding: 1.5rem;
  }
}
.is-style-image-left .callout-card__content {
  width: 57%;
}
@media (max-width: 47.9375rem) {
  .is-style-image-left .callout-card__content {
    width: 100%;
  }
}
.is-style-page-sidebar .is-style-image-left .callout-card__content {
  width: 63%;
}
@media (max-width: 47.9375rem) {
  .is-style-page-sidebar .is-style-image-left .callout-card__content {
    width: 100%;
  }
}

.callout-card__headline {
  margin: 0;
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  text-transform: unset;
}
.callout-card__headline:after {
  content: "";
  display: block;
  width: 3.625rem;
  height: 3px;
  margin: 1.375rem 0 1.5rem;
  background-color: #154734;
}
.is-style-purple .callout-card__headline:after {
  background-color: #880250;
}
.is-style-blue .callout-card__headline:after {
  background-color: #0071BC;
}
.is-style-yellow .callout-card__headline:after {
  background-color: #927200;
}
.is-style-pink .callout-card__headline:after {
  background-color: #F04C54;
}

.callout-card__description {
  font-family: "Franziska", serif;
  margin-bottom: 2rem;
}
@media (max-width: 47.9375rem) {
  .callout-card__description {
    margin-bottom: 1.25rem;
  }
}

.callout-card__link {
  margin-top: auto;
  text-decoration: none;
}
.is-style-image-left .callout-card__link {
  margin-top: 0;
}
.is-style-purple .callout-card__link {
  color: #880250;
}
.is-style-purple .callout-card__link path {
  fill: #880250;
}
.is-style-blue .callout-card__link {
  color: #0071BC;
}
.is-style-blue .callout-card__link path {
  fill: #0071BC;
}
.is-style-yellow .callout-card__link {
  color: #927200;
}
.is-style-yellow .callout-card__link path {
  fill: #927200;
}
.is-style-pink .callout-card__link {
  color: #F04C54;
}
.is-style-pink .callout-card__link path {
  fill: #F04C54;
}
.--has-link:hover .callout-card__link {
  text-decoration: underline;
}