/* =========================================
   ART: Inventario editorial
   Ítem destacado gigante + grilla de slots
   + título vertical gigante al costado
   ========================================= */

.art-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 1100px) {
  .art-layout {
    grid-template-columns: 56px 1.5fr 1fr;
  }
  .art-mega {
    grid-row: span 2;
  }
}

.art-mega {
  display: none;
}

@media (min-width: 1100px) {
  .art-mega {
    display: block;
    font-size: 3.2rem;
  }
}

/* Ítem destacado: ficha grande horizontal */
.item-card.featured {
  flex-direction: row;
}

.item-card.featured .item-strip {
  align-items: center;
  background:
    repeating-linear-gradient(180deg, transparent 0 9px, rgba(0, 0, 0, 0.5) 9px 12px),
    linear-gradient(180deg, rgba(var(--ia), 0.7), rgba(var(--ia), 0.4));
  box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.4);
  color: var(--void);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  margin: 11px 0 11px 11px;
  overflow: hidden;
  width: 32px;
}

.item-card.featured .item-strip span {
  font-family: var(--font-hud);
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-orientation: mixed;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.item-card.featured .item-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.item-card.featured .item-image {
  aspect-ratio: auto;
  flex-grow: 1;
  min-height: 300px;
}

/* La grilla inferior de ítems menores ocupa todo el ancho */
.art-grid-full {
  grid-column: 1 / -1;
}

@media (min-width: 1100px) {
  .art-grid-full {
    grid-column: 2 / -1;
  }
}
