/* ===== Affiox World Grid — NEXT LEVEL +10 ===== */

.affiox-world {
  padding-top: 40px;
}

.affiox-world-header {
  margin-bottom: 42px;
}

.affiox-world-kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--affiox-muted);
  letter-spacing: .08em;
}

.affiox-world-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.affiox-card {
  background: var(--affiox-surface);
  border: 1px solid var(--affiox-border);
  border-radius: var(--affiox-radius);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.affiox-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--affiox-shadow);
}

.affiox-card-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}

.affiox-card-excerpt {
  color: var(--affiox-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.affiox-card-read {
  font-weight: 700;
  color: var(--affiox-accent);
}

.affiox-card-empty {
  text-align: center;
  padding: 40px;
  color: var(--affiox-muted);
}
