.card__title.heading {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .card__title.heading {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}

.card__media {
  margin-left: 10px;
}
.card__media img {
  border: 1px solid #6e0000;
}

.card__content {
  padding-left: 10px;
}
.card__content .body-text {
  color: #444444;
  line-height: 1.375;
  margin-bottom: 20px;
  min-height: 70px;
}
.card__content::before {
  position: absolute;
  content: "";
  border-color: #000000;
  border-width: 0 0 1px 1px;
}

.card__link {
  background-color: #0d5ca0;
  border: 2px solid #0d5ca0;
  color: #fff;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background-color 0.25s, color 0.25s;
  border-radius: 4px;
  padding: 0.5rem 3rem;
  position: relative;
  font-size: 1rem;
  margin-left: 16px;
  background-color: #6e0000;
  border-color: #6e0000;
  /* Vertical line next to button */
  /* Horizontal line next to button */
}
.card__link:hover {
  background-color: #fff;
  color: #5f0808;
}
.card__link::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background-color: #000000;
  width: 1px;
  height: 13px;
  bottom: 16px;
  left: -22px;
}
@media screen and (min-width: 768px) {
  .card__link::before {
    height: 15px;
    left: -16px;
  }
}
.card__link::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-color: #000000;
  height: 1px;
  width: 20px;
  bottom: 16px;
  left: -22px;
}
@media screen and (min-width: 768px) {
  .card__link::after {
    left: -15px;
    width: 13px;
  }
}