@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;
  }
}
.paragraph--type--generic-card,
.node--view-mode--content-card {
  box-shadow: 0 0.25rem 1.5rem 0 rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  position: relative;
  width: 100%;
  transition: 0.3s box-shadow ease-in-out;
  background-color: var(--background, #fff);
  cursor: initial;
  display: flex;
  height: 100%;
  overflow: hidden;
}
.paragraph--type--generic-card:has(:focus), .paragraph--type--generic-card:has(:focus-visible),
.node--view-mode--content-card:has(:focus),
.node--view-mode--content-card:has(:focus-visible) {
  border: 0.125rem solid #553178;
}
.paragraph--type--generic-card:has(:focus) .img, .paragraph--type--generic-card:has(:focus-visible) .img,
.node--view-mode--content-card:has(:focus) .img,
.node--view-mode--content-card:has(:focus-visible) .img {
  border-radius: 0;
}
.paragraph--type--generic-card:has(:hover),
.node--view-mode--content-card:has(:hover) {
  box-shadow: 0 0.125rem 0.75rem 0 rgba(0, 0, 0, 0.12);
}
.paragraph--type--generic-card .general-card,
.node--view-mode--content-card .general-card {
  height: 100%;
}
.paragraph--type--generic-card .text,
.node--view-mode--content-card .text {
  background: none;
  padding: 1.5rem;
}
.paragraph--type--generic-card .text .heading,
.node--view-mode--content-card .text .heading {
  margin-top: 0;
  margin-bottom: 1rem;
}
.paragraph--type--generic-card .text .card__content > *:last-child,
.node--view-mode--content-card .text .card__content > *:last-child {
  margin-bottom: 0;
}
.paragraph--type--generic-card .img,
.node--view-mode--content-card .img {
  border-radius: 0.5rem 0.5rem 0 0;
  border: none;
}
.paragraph--type--generic-card .overline,
.node--view-mode--content-card .overline {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  font-family: Figtree;
  font-size: 13px;
  font-style: normal;
  line-height: 150%; /* 19.5px */
  letter-spacing: 0.65px;
}
.paragraph--type--generic-card .heading,
.paragraph--type--generic-card .card__heading,
.paragraph--type--generic-card .card__links,
.node--view-mode--content-card .heading,
.node--view-mode--content-card .card__heading,
.node--view-mode--content-card .card__links {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .paragraph--type--generic-card .heading,
  .paragraph--type--generic-card .card__heading,
  .paragraph--type--generic-card .card__links,
  .node--view-mode--content-card .heading,
  .node--view-mode--content-card .card__heading,
  .node--view-mode--content-card .card__links {
    font-size: 1.5rem;
  }
}
.paragraph--type--generic-card .card__heading,
.node--view-mode--content-card .card__heading {
  margin-bottom: 1.25rem;
  margin-top: 0;
  color: #181818;
  font-size: 1.25rem;
}
.paragraph--type--generic-card .blurb,
.node--view-mode--content-card .blurb {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #181818;
}
.paragraph--type--generic-card .card__links,
.paragraph--type--generic-card .card__beta-links,
.node--view-mode--content-card .card__links,
.node--view-mode--content-card .card__beta-links {
  margin-bottom: 1.25rem;
  margin-top: 0;
}
.paragraph--type--generic-card .card__links a,
.paragraph--type--generic-card .card__beta-links a,
.node--view-mode--content-card .card__links a,
.node--view-mode--content-card .card__beta-links a {
  position: relative;
  display: inline-block;
  color: #00857B;
  padding-right: 30px;
  width: 100%;
  text-decoration: none;
  transition: 0.5s all ease-in-out;
  min-height: 24px;
  font-size: 1.25rem;
}
.paragraph--type--generic-card .card__links a::after,
.paragraph--type--generic-card .card__beta-links a::after,
.node--view-mode--content-card .card__links a::after,
.node--view-mode--content-card .card__beta-links a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50px;
  display: block;
  background-color: #CCE7E5;
  transform: translate(0, -50%);
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
}
.paragraph--type--generic-card .card__links a::before,
.paragraph--type--generic-card .card__beta-links a::before,
.node--view-mode--content-card .card__links a::before,
.node--view-mode--content-card .card__beta-links a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  display: block;
  background-color: #00857B;
  -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2720%27%20height%3D%2720%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M11.3333%2015L10.1667%2013.7917L13.125%2010.8333H3V9.16667H13.125L10.1667%206.20833L11.3333%205L16.3333%2010L11.3333%2015Z%27%20fill%3D%27black%27/%3E%3C/svg%3E);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 20px 20px;
  mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2720%27%20height%3D%2720%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M11.3333%2015L10.1667%2013.7917L13.125%2010.8333H3V9.16667H13.125L10.1667%206.20833L11.3333%205L16.3333%2010L11.3333%2015Z%27%20fill%3D%27black%27/%3E%3C/svg%3E);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 20px 20px;
  transform: translate(0, -50%);
  transition: transform 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.paragraph--type--generic-card .card__links a:hover::after, .paragraph--type--generic-card .card__links a:hover::before,
.paragraph--type--generic-card .card__beta-links a:hover::after,
.paragraph--type--generic-card .card__beta-links a:hover::before,
.node--view-mode--content-card .card__links a:hover::after,
.node--view-mode--content-card .card__links a:hover::before,
.node--view-mode--content-card .card__beta-links a:hover::after,
.node--view-mode--content-card .card__beta-links a:hover::before {
  transform: translate(8px, -50%);
}
.paragraph--type--generic-card .card__beta-links a,
.node--view-mode--content-card .card__beta-links a {
  font-size: 1rem;
  padding-right: 3rem;
}
.paragraph--type--generic-card .card__content > *:last-child,
.node--view-mode--content-card .card__content > *:last-child {
  margin-bottom: 0;
}

/*# sourceMappingURL=general-card.css.map*/