/* Hub univers LeGeekShop — cartes curatées */

.lgk-uh {
  width: 100%;
  margin: 0;
}

.lgk-uh__head {
  margin: 0 0 1.15rem;
  text-align: center;
}

.lgk-uh__badge {
  display: inline-flex;
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #22d3ee;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.lgk-uh__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--lgk-text-primary, #e8edf5);
  line-height: 1.15;
}

.lgk-uh__sub {
  margin: 0.55rem auto 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--lgk-text-secondary, #94a3b8);
}

.lgk-uh__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media screen and (min-width: 700px) {
  .lgk-uh__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 1100px) {
  .lgk-uh__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }
}

.lgk-uh__card {
  position: relative;
  display: grid;
  gap: 0.35rem;
  align-content: start;
  padding: 1.05rem 1.1rem 1.1rem 1.2rem;
  border-radius: var(--lgk-radius, 10px);
  border: 1px solid var(--lgk-border, rgba(148, 163, 184, 0.14));
  background: var(--lgk-surface, #151a24);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.lgk-uh__card:hover,
.lgk-uh__card:focus-visible {
  border-color: rgba(34, 211, 238, 0.4);
  background: #1c2333;
  transform: translateY(-2px);
}

.lgk-uh__card.is-current {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.lgk-uh__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #2563eb;
}

.lgk-uh__card--gaming .lgk-uh__accent {
  background: linear-gradient(180deg, #22c55e, #2563eb);
}
.lgk-uh__card--games .lgk-uh__accent {
  background: linear-gradient(180deg, #2563eb, #22d3ee);
}
.lgk-uh__card--featured {
  outline: 1px solid rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.12), 0 10px 28px rgba(0, 0, 0, 0.28);
}
.lgk-uh__card--featured .lgk-uh__kicker {
  color: #fb923c;
}
.lgk-uh__card--geek .lgk-uh__accent {
  background: linear-gradient(180deg, #7c3aed, #22d3ee);
}
.lgk-uh__card--fivem .lgk-uh__accent {
  background: linear-gradient(180deg, #f59e0b, #ef4444);
}
.lgk-uh__card--bot .lgk-uh__accent {
  background: linear-gradient(180deg, #5865f2, #22d3ee);
}
.lgk-uh__card--create .lgk-uh__accent {
  background: linear-gradient(180deg, #22d3ee, #7c3aed);
}

.lgk-uh__kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.lgk-uh__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e8edf5;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lgk-uh__desc {
  font-size: 0.84rem;
  line-height: 1.45;
  color: #94a3b8;
}

.lgk-uh__cta {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #22d3ee;
}

.lgk-uh__card:hover .lgk-uh__cta {
  color: #67e8f9;
}

.lgk-uh__sisters {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  text-align: center;
}

.lgk-uh__sisters-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.lgk-uh__sisters-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.lgk-uh__sister {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #11151f;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.lgk-uh__sister:hover {
  border-color: rgba(34, 211, 238, 0.4);
  color: #22d3ee;
}

.lgk-uh--compact .lgk-uh__head {
  margin-bottom: 0.85rem;
}

.lgk-uh--compact .lgk-uh__title {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.lgk-uh--compact .lgk-uh__card {
  padding: 0.9rem 1rem;
}

/* Dans le mesh collections */
.lgk-mesh-accordion-list .lgk-uh,
.lgk-collections-directory__groups .lgk-uh,
.lgk-home-collections-hub .lgk-uh {
  margin-top: 0.25rem;
}
