.carte {
  display: flex;
  flex-direction: column;
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carte:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.imageConteneur {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--gris-clair);
}

.imagePlaceholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--beige-kraft) 0%, #faecd0 100%);
}

.image {
  object-fit: cover;
}

.contenu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 22px;
}

.meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vert-fonce);
}

.titre {
  font-family: var(--font-gotham);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gris-fonce);
  line-height: 1.35;
}
