.cardHTL {
  display: flex;
  background: white;
  border: solid 1px #cccccc;
  transition: border-color 0.35s;
}
.cardHTL.card--columnLayout {
  flex-direction: column;
}
.cardHTL:hover {
  border-color: #004494;
}
.cardHTL .card__image {
  aspect-ratio: 1.77777778;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.cardHTL .card__image picture {
  display: flex;
  width: 100%;
  align-items: center;
}
.cardHTL .card__image img {
  width: 100%;
  height: auto;
}
.cardHTL .card__image.card__image--square {
  aspect-ratio: 1;
}
.cardHTL .card__image.card__image--square picture {
  height: 100%;
}
.cardHTL .card__image.card__image--square picture img {
  object-fit: cover;
  height: 100%;
  overflow-clip-margin: 0px;
}
.cardHTL h3 a:hover,
.cardHTL h3 a:link,
.cardHTL h3 a:active {
  color: #004494;
}
.cardHTL a:hover,
.cardHTL a:active,
.cardHTL a:link {
  color: #004494;
}
.cardHTL .card__description {
  font-size: 14px;
  line-height: 21px;
  color: #666666;
}
.cardHTL .card__description ul li {
  list-style-image: none;
}
.cardHTL .card__description li {
  margin: 0 0 5px 0;
}
.cardHTL .card__description p,
.cardHTL .card__description li,
.cardHTL .card__description span {
  font-size: 14px;
  line-height: 21px;
  color: #666666;
}
.cardHTL .card__description :last-child {
  margin-bottom: 0;
}
.cardHTL .btn-action {
  display: inline-block;
  margin: 30px 0 0 0;
}
