/* =========================================================
   CredShields - Ecosystem (page-specific overrides)
   Base styles → main.v1.css / page-components.css
   Only allowed tokens used - no invented variables.
   ========================================================= */

/* ── Hero dossier stamp ─────────────────────────────────── */
.dossier-stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  line-height: 1.3;
  margin-bottom: 12px;
}

/* ── § 01 trust-pills spacing tweak ────────────────────── */
.eco-trust-section .trust {
  margin-top: 32px;
}

/* ── § 02 comp-tag-grid - 4-column layout ───────────────── */
.comp-tag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

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

@media (max-width: 600px) {
  .comp-tag-grid {
    grid-template-columns: 1fr;
  }
}

.comp-tag-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-lt);
}

.comp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.comp-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-2);
  background: transparent;
  transition: border-color var(--t-slow), color var(--t-slow);
}

.comp-tag.lime {
  border-color: var(--lime-bdr);
  background: var(--lime-bg);
  color: var(--lime);
}

/* ── § 03 ai-card icon sizing ───────────────────────────── */
.ai-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--fg-2);
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* ── § 04 worlds-grid responsive ───────────────────────── */
.worlds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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