.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  padding-top: 80px;
  cursor: none;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.card.card--visible {
  opacity: 1;
  transform: translateY(0);
}

.card * {
  text-decoration: none;
}

.card--full .card-footer {
  max-width: calc(50% - 12px);
}

.card-image {
  width: 100%;
  background: #EEEEF2;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card-tags {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.card-footer h3 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--text);
}

/* ── GRADIENT CARDS (index-v2) ── */
.card-image--gradient {
  isolation: isolate;
}

.card-image--gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(128, 128, 128, 1);
  filter: url(#grain);
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.card-mockup {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.card-image--gradient .card-tags {
  z-index: 3;
}
