.story-card {
  --story-thumb-size: clamp(96px, 12vw, 108px);
  display: grid;
  grid-template-columns: var(--story-thumb-size) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 5px 0 12px;
  border-bottom: 1px solid #f3eeee;
  background: transparent;
}

.story-media {
  display: grid;
  gap: 5px;
  align-self: center;
  justify-items: center;
}

.story-card > span:not(.story-media) {
  display: grid;
  gap: 4px;
  min-width: 0;
  align-self: center;
}

.story-media .article-meta,
.story-media .story-meta {
  display: none;
  justify-self: center;
  text-align: center;
}

.story-media .article-meta {
  position: static;
  max-width: 100%;
  padding: 4px 6px;
  color: var(--brand-dark);
  background: #fff1eb;
  box-shadow: none;
}

.story-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(30, 83, 106, 0.86), rgba(236, 99, 62, 0.78)),
    url("/assets/renolab-mark.png") center / 36px auto no-repeat;
}

.story-thumb.has-cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.story-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: #56565c;
  font-size: 15px;
  font-weight: 680;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.story-card p {
  display: none;
}

@media (min-width: 900px) {
  .story-card.is-title-single-line p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #8b8584;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
}

.story-meta {
  display: inline-block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.story-card:hover strong {
  color: var(--brand-dark);
}

@media (max-width: 720px) {
  .story-card {
    --story-thumb-size: 92px;
    gap: 11px;
    padding: 10px 0;
  }

  .story-card strong {
    font-size: 14px;
  }
}
