.link-card {
//  display: flex;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  display: flex;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
}

.link-card img {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  object-fit: cover;
  width: 150px;
  height: 150px;
}

.link-card-content {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.link-card-title {
  font-size: 1.25em;
  margin: 0;
  margin-bottom: 5px;
}

.link-card-description {
  font-size: 1em;
  margin: 0;
  color: #586069;
}

/*
@media (max-width: 600px) {
  .link-card {
    flex-direction: column;
  }

  .link-card img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
    width: 100%;
    height: auto;
  }
}
*/
