@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@container myContainer (max-width: 767px) {
  .my-tile {
    border: 3px solid red;
  }
}
@container (min-width: 768px) {
  .my-tile {
    border: 3px solid red;
  }
}
.text-group.text-wrapper .overline,
.text-group.text-wrapper .headline,
.text-group.text-wrapper .subhead {
  padding-bottom: 24px;
  margin: 0;
  display: block;
}
.text-group.text-wrapper .headline {
  font-family: Figtree;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 43.2px */
  padding-bottom: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--text);
  text-wrap-style: pretty;
}
.text-group.text-wrapper .overline {
  font-family: Figtree;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 19.5px */
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: var(--text);
}
.text-group.text-wrapper .subhead {
  font-family: Figtree;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
  color: var(--text);
}
.text-group.text-wrapper .description {
  /* Body Medium */
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--text);
  text-wrap-style: pretty;
  /* 24px */
}
@media all and (min-width: 768px) {
  .text-group.text-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  .text-group.text-wrapper:has(.links) .description p:last-child {
    margin-bottom: 2rem;
  }
}

/*# sourceMappingURL=text-group.css.map*/