.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border-default);
  background: linear-gradient(150deg, rgba(20, 20, 24, 0.9), rgba(11, 11, 14, 0.98));
  overflow: hidden;
  transition: border-color var(--speed-fast), transform var(--speed-base) ease, box-shadow var(--speed-base) ease;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.imageWrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.image {
  object-fit: cover;
}

.body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.categoryBadge {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  background: rgba(var(--orange-rgb), 0.12);
  padding: 4px 10px;
  border-radius: var(--radius);
}

.title {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-primary);
  font-weight: 600;
}

.description {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  margin-top: auto;
  padding-top: 6px;
  font-size: 13px;
  color: var(--text-tertiary);
}
