.tc-breadcrumbs {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
  color: var(--color-gray-500);
}

.tc-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.tc-breadcrumbs li+li::before {
  content: "/";
  margin-right: 0.35rem;
  color: var(--color-gray-400);
}

.tc-header {
  margin-bottom: var(--space-8);
}

.tc-header .tag {
  margin-bottom: var(--space-3);
}

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

.tc-section:last-of-type {
  margin-bottom: 0;
}

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

.tc-list {
  padding-left: 1.1rem;
}

.tc-list li {
  position: relative;
  margin-bottom: var(--space-2);
  color: var(--color-text-soft);
  font-size: var(--font-size-sm);
}

.tc-list li::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.tc-updated {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  margin-top: var(--space-4);
}

.tc-cta h3 {
  margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
  .tc-header {
    max-width: 720px;
  }

  .tc-section {
    max-width: 900px;
  }
}
