.content-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin: 1.5rem 0;
}

.content-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.content-card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.content-card__media-link {
  display: block;
}

.content-card__image {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.content-card__body {
  padding: 1rem;
}

.content-card__title {
  color: #111827;
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.content-card__subtitle {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.content-card__description {
  color: #4b5563;
  margin: 0;
}

.content-card__status {
  background: #7f1d1d;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 0.75rem;
}
