.ykm-related-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  background: #e11d2e;
  color: #fff;
  text-decoration: none;
}

.ykm-related-card__image {
  background: #f3f4f6;
  min-height: 180px;
}

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

.ykm-related-card__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ykm-related-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}

.ykm-related-card__title {
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
  font-weight: 700;
}

@media (max-width: 768px) {
  .ykm-related-card {
    grid-template-columns: 1fr;
  }
}
