@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;
  }
}
.accordions .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);
}
.accordions .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);
}
.accordions .subhead {
  font-family: Figtree;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 36px */
  color: var(--text);
}

/*# sourceMappingURL=accordions-component.css.map*/