.content-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 4px 4px 2.6px rgba(0, 0, 0, 0.1);
  color: #5e6167;
  font-family: 'Geist', Arial, sans-serif;
  min-height: 371px;
  overflow: hidden;
  width: 100%;
}

.content-card *,
.content-card *::before,
.content-card *::after {
  box-sizing: border-box;
}

.content-card__link,
.content-card__static {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.content-card__media {
  background: #d9d9d9;
  height: 171px;
  overflow: hidden;
}

.content-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.content-card__image-placeholder {
  align-items: center;
  color: #5e6167;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 20px;
}

.content-card__heading {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.content-card__accent {
  background: #b8b8b8;
  height: 8px;
  width: 100%;
}

.content-card--cyan .content-card__accent {
  background: #00aeef;
}

.content-card__title {
  color: #001844;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.072px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 16px 9px;
}

.content-card__divider {
  background: #d0d1d3;
  height: 1px;
  width: 100%;
}

.content-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px 16px;
}

.content-card__description {
  color: #5e6167;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.056px;
  line-height: 20px;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.content-card__cta {
  align-items: center;
  color: #5e6167;
  display: inline-flex;
  gap: 9px;
  margin-top: auto;
  text-transform: uppercase;
  width: fit-content;
}

.content-card__cta,
.content-card__link,
.content-card__static {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.048px;
  line-height: 1.3;
}

.content-card__arrow {
  display: block;
  height: 10px;
  stroke: currentColor;
  width: 27px;
}

.content-card__link:hover .content-card__title,
.content-card__link:focus-visible .content-card__title {
  color: #007eb8;
}

.content-card__link:focus-visible {
  outline: 2px solid #007eb8;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .content-card {
    min-height: auto;
  }

  .content-card__title {
    font-size: 16px;
    letter-spacing: 0.064px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .content-card__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

