.tc-breadcrumbs {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.tc-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tc-breadcrumbs li::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-text-muted);
}

.tc-breadcrumbs li:last-child::after {
  content: "";
}

.tc-breadcrumbs a {
  font-weight: 500;
}

.tc-hero {
  margin-bottom: var(--space-6);
}

.tc-hero-meta {
  margin-top: var(--space-4);
}

.tc-intro {
  margin-bottom: var(--space-6);
}

.tc-section {
  margin-bottom: var(--space-6);
}

.tc-section h2 {
  margin-bottom: var(--space-3);
}

.tc-list {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.tc-ordered-list {
  counter-reset: tc-counter;
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding-left: 0;
}

.tc-ordered-list > li {
  position: relative;
  padding-left: 2.5rem;
}

.tc-ordered-list > li::before {
  counter-increment: tc-counter;
  content: counter(tc-counter);
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(47, 48, 40, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .tc-section {
    margin-bottom: var(--space-5);
  }

  .tc-ordered-list > li {
    padding-left: 2.1rem;
  }

  .tc-ordered-list > li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
  }
}
