.content-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-column-gap: 3rem;
  grid-row-gap: 3.5rem;
}

@media (min-width:1200px) {
  .content-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.content-cards-card {
  background-color: #fff;
  box-shadow: 2px 4px 10px 2px rgb(238, 238, 238);
  display: flex;
  flex-direction: column;
}

.content-cards-card__shortcode {
  position: relative;
}

.content-cards-card__shortcode img {
  object-position: center;
  object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
}

.content-cards-card__shortcode .bottomRight {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.content-cards-card__shortcode .credit {
  font-size: .7rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.content-cards-card__content {
  padding: 3rem;
  padding-block-start: 15px;
  line-height: 1.2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.content-cards-card__content .content-cards-card__excerpt {
  margin-bottom: 20px;
}

.content-cards-card__content h3 {
  font-size: 19px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.content-cards-card__content h3 a {
  color: inherit !important;
  margin: 10px 0;
  letter-spacing: normal;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: none;
}
