/* ── Section hub cards ── */
.hubs-band {
  padding: 20px 0 70px;
}

.hubs-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hubs-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--muted);
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

@media (max-width: 900px) {
  .hubs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .hubs-grid {
    grid-template-columns: 1fr;
  }
}

.hub-card {
  background: var(--cream);
  padding: 26px 24px 22px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hub-card:first-child {
  border-radius: 8px 0 0 8px;
}

.hub-card:last-child {
  border-radius: 0 8px 8px 0;
}

@media (max-width: 900px) {
  .hub-card:first-child {
    border-radius: 8px 0 0 0;
  }

  .hub-card:nth-child(2) {
    border-radius: 0 8px 0 0;
  }

  .hub-card:nth-child(3) {
    border-radius: 0 0 0 8px;
  }

  .hub-card:last-child {
    border-radius: 0 0 8px 0;
  }
}

@media (max-width: 500px) {
  .hub-card,
  .hub-card:first-child,
  .hub-card:last-child,
  .hub-card:nth-child(n) {
    border-radius: 0;
  }

  .hub-card:first-child {
    border-radius: 8px 8px 0 0;
  }

  .hub-card:last-child {
    border-radius: 0 0 8px 8px;
  }
}

.hub-card:hover {
  background: rgba(200, 242, 58, 0.18);
}

.hub-card__tag {
  font-family: var(--font-display);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: darkolivegreen;
}

.hub-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
}

.hub-card__desc {
  font-size: 0.87rem;
  line-height: 1.65;
  color: #3a3632;
  flex: 1;
}

.hub-card__arrow {
  font-size: 0.82rem;
  color: var(--lime-dark);
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 4px;
}