/* ==========================================================================
   "THE TGC MAN" STYLES
   ========================================================================== */

.tgc-man { background: var(--gradient-purple); color: var(--color-cream); }

.tgc-man__inner { max-width: 760px; }

.tgc-man h2 { color: var(--color-white); }

.tgc-man__intro {
  color: rgba(250,246,236,0.88);
  margin-bottom: var(--space-md);
  max-width: 620px;
}

.tgc-man__list {
  list-style: none;
  counter-reset: tgc-man-counter;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.tgc-man__list li {
  counter-increment: tgc-man-counter;
  position: relative;
  padding-left: 2.4rem;
  color: var(--color-cream);
}

.tgc-man__list li::before {
  content: counter(tgc-man-counter);
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--gradient-gold-purple);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
