.resource-teaser {
  display: flex;
  gap: var(--size-6);
  margin-bottom: var(--size-6);
}
@media (max-width: 768px) {
  .resource-teaser {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .resource-teaser .resource-teaser__media {
    text-align: center;
  }
  .resource-teaser .resource-teaser__media .field__content {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .resource-teaser .resource-teaser__media {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
.resource-teaser .resource-teaser__media img {
  width: 100%;
}
@media (min-width: 768px) {
  .resource-teaser .resource-teaser__media img {
    max-width: 200px;
  }
}
.resource-teaser .resource-teaser__media .field--name-field-icon img {
  max-width: 100px;
}
@media (min-width: 768px) {
  .resource-teaser .resource-teaser__content {
    flex: 1 1 0;
  }
}
.resource-teaser .resource-teaser__title {
  margin-bottom: 0;
  color: var(--color-navy);
  font-size: 18px;
  line-height: 20px;
}
.resource-teaser .resource-teaser__title a {
  color: var(--color-navy);
}
.resource-teaser .resource-teaser__body {
  opacity: 0;
  margin-top: var(--size-2);
  transition-property: max-height;
  transition-duration: 0.65s;
  transition-timing-function: ease-in-out;
}
.resource-teaser .resource-teaser__body > *:last-child {
  margin-bottom: 0;
}
.resource-teaser .resource-teaser__body.is-shown, .resource-teaser .resource-teaser__body.is-truncated {
  opacity: 1;
}
.resource-teaser .resource-teaser__body.is-truncated {
  overflow: hidden;
  max-height: var(--size-8);
}
.resource-teaser .resource-teaser__body.is-expanded {
  max-height: 100%;
  transition-timing-function: ease-in;
}
.resource-teaser .resource-teaser__cta {
  display: block;
  top: 0;
  margin-top: var(--size-2);
  font-weight: bold;
}
.resource-teaser .resource-teaser__cta:not(.is-shown) {
  display: none;
}