@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;
  }
}
.flexible-image-block .order-1 {
  order: 1;
}
.flexible-image-block .order-2 {
  order: 2;
}
@media all and (min-width: 768px) {
  .flexible-image-block .order-1 {
    order: 2;
  }
  .flexible-image-block .order-2 {
    order: 1;
  }
  .flexible-image-block.reverse .order-1 {
    order: 1;
  }
  .flexible-image-block.reverse .order-2 {
    order: 2;
  }
}
.flexible-image-block .text-wrapper .overline,
.flexible-image-block .text-wrapper .headline,
.flexible-image-block .text-wrapper .subhead {
  padding-bottom: 24px;
  margin: 0;
  display: block;
}
.flexible-image-block .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;
}
.flexible-image-block .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);
}
.flexible-image-block .text-wrapper .subhead {
  font-family: Figtree;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
  color: var(--text);
}
.flexible-image-block .text-wrapper .description {
  /* Body Medium */
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
}
@media all and (min-width: 768px) {
  .flexible-image-block .text-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  .flexible-image-block .text-wrapper:has(.links) .description p:last-child {
    margin-bottom: 2rem;
  }
}
.flexible-image-block .img-wrapper {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .flexible-image-block .img-wrapper {
    aspect-ratio: 1/1;
    margin: 0;
  }
}
.flexible-image-block .img-wrapper picture {
  display: block;
  width: 100%;
}
.flexible-image-block .img-wrapper img {
  border-radius: 0.25rem;
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .flexible-image-block .img-wrapper img {
    margin: 0;
  }
}

/*# sourceMappingURL=flexible-image-block.css.map*/