.card-highlight {
  perspective: 1000px;
}

.card-highlight__inner {
  display: grid; /* here */
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 0.125rem;
  background: #FFF;
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.10);
}

.card-highlight a:hover {
  text-decoration: none;
}

.card-highlight a {
  color: inherit;
}

/* Trigger flip on hover */
.card-highlight.card-highlight--has-back-description:hover .card-highlight__inner {
  transform: rotateY(180deg);
}
.card-highlight .card-highlight__front,
.card-highlight .card-highlight__back {
  grid-area: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 1rem;
}

.card-highlight__image .field--type-entity-reference,
.card-highlight__image .field--type-image,
.card-highlight__image .field--type-image img {
  margin: 0 !important;
}


.card-highlight__back {
  transform: rotateY(180deg);
}


.card-highlight__front-description,
.card-highlight__back-description,
.card-highlight__title {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.card-highlight__title {
  font-size: 2.0rem;
  line-height: 1.2;
  font-weight: bold;
  color: var(--color-blue-dark);
}

.card-highlight__front-caret,
.card-highlight__back-caret {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  margin-top: auto;
  color: var(--color-blue-light);
  align-self: flex-end;
  width: 1rem;
  height: 1rem;
}
