/** Text Media */
.text-media {
  /*
  .video-wrapper iframe {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
  }*/
}
.text-media a:hover {
  text-decoration: underline;
}
.text-media__row {
  row-gap: 4.375rem;
  justify-content: center;
}
.text-media__text-wrapper {
  order: 1;
}
.text-media__media-wrapper {
  order: 2;
}
.text-media__text-wrapper, .text-media__media-wrapper {
  align-content: center;
}
@media (min-width: 576px) {
  .text-media__text-wrapper, .text-media__media-wrapper {
    order: unset;
  }
}
.text-media__link {
  height: auto;
  display: inline-block;
  margin-top: 0.5rem;
}
.text-media__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 0.25rem;
}
.text-media__media > * {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.text-media__play-wrapper {
  all: unset;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .text-media__play-wrapper:hover .media__play-button {
    background-color: #3CDC96;
  }
}
.text-media__play-button {
  all: unset;
  position: absolute;
  width: 4.375rem;
  height: 4.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #FFFFFF;
  cursor: pointer;
  z-index: 1;
  transition: all 300ms cubic-bezier(0.34, 1, 0.64, 1);
}
@media (hover: hover) and (pointer: fine) {
  .text-media__play-button:hover {
    background-color: #3CDC96;
  }
}
.text-media__play-button > * {
  width: 20px;
}

/** No Media */
.text-media--no-media .text-media__row {
  row-gap: 0;
}
@media (min-width: 576px) {
  .text-media--no-media .text-media__text-wrapper {
    order: 2;
  }
  .text-media--no-media .text-media__headline-wrapper {
    order: 1;
  }
}
.text-media--no-media .text-media__headline-wrapper {
  display: flex;
  align-items: flex-start;
}
.text-media--no-media .text-media__headline {
  font-size: 1.5625rem;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;
  hyphenate-limit-chars: auto 15 4;
}
@media (min-width: 768px) {
  .text-media--no-media .text-media__headline {
    font-size: 1.875rem;
  }
}
.text-media__link {
  position: relative;
  text-decoration: none;
  padding: 0.5rem 0;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-weight: 700;
}
.text-media__link:hover {
  color: #52128A;
}
.text-media__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #FBAC95;
  transition: all 800ms cubic-bezier(0.34, 1, 0.64, 1);
}
.text-media__link:hover::before {
  height: 0.25rem;
  background-color: #52128A;
}
.text-media--no-media__lin, .text-media.container-fluid--bg-primary .text-media__link {
  position: relative;
  text-decoration: none;
  padding: 0.5rem 0;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-weight: 700;
}
.text-media--no-media__lin:hover, .text-media.container-fluid--bg-primary .text-media__link:hover {
  color: #FBAC95;
}
.text-media--no-media__lin::before, .text-media.container-fluid--bg-primary .text-media__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #3CDC96;
  transition: all 800ms cubic-bezier(0.34, 1, 0.64, 1);
}
.text-media--no-media__lin:hover::before, .text-media.container-fluid--bg-primary .text-media__link:hover::before {
  height: 0.25rem;
  background-color: #FBAC95;
}
/*# sourceMappingURL=text-media.css.map */
