/* =====================================================================
   VIKINGOS RECREACIÓN · personajes/index.html only.
   ===================================================================== */

.catalog-grid { --grid-min: 260px; margin-top: 1rem }

.catalog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--ease), rotate var(--ease), box-shadow var(--ease);
}

.catalog-card:hover { transform: var(--lift); rotate: -1deg; box-shadow: var(--shadow-md) }

.catalog-media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface-alt) }
.catalog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease }
.catalog-card:hover .catalog-media img { transform: scale(1.06) }

.catalog-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1 }
.catalog-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem }
.catalog-body p { font-size: 0.95rem; line-height: 1.55; color: var(--text-muted); margin-bottom: 1.25rem; flex-grow: 1 }
.catalog-body .btn { align-self: flex-start }

.moments-intro { max-width: 42rem; margin: 2.5rem auto 1rem auto; text-align: center }
