/* ============================================
   NEXUS — Bento Grid (Win95 Style)
   ============================================ */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.bento__item {
  background: var(--surface-1);
  border: 3px solid;
  border-color: #505050 #000000 #000000 #505050;
  padding: var(--space-xl);
  transition: none;
  position: relative;
  overflow: hidden;
}

.bento__item::before {
  display: none;
}

.bento__item:hover {
  border-color: #000000 #505050 #505050 #000000;
}

.bento__item--wide {
  grid-column: span 2;
}

.bento__icon {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.bento__title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.bento__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* Responsive */
@media (max-width: 1023px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .bento__item--wide {
    grid-column: span 1;
  }
}
