.tc-breadcrumbs {
  font-size: var(--font-size-xs);
  color: var(--gray-400);
  margin-bottom: var(--space-12);
}

.tc-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.tc-breadcrumbs li::after {
  content: "/";
  margin-left: var(--space-4);
  color: var(--gray-600);
}

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

.tc-breadcrumbs a {
  color: var(--gray-300);
}

.tc-breadcrumbs a:hover {
  color: var(--color-primary);
}

.tc-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
}

.tc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.tc-section {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-top: var(--space-24);
  margin-top: var(--space-24);
}

.tc-section--last {
  padding-bottom: var(--space-16);
}

.tc-section p {
  max-width: 60rem;
}

.tc-section ul {
  max-width: 58rem;
}

.tc-last-updated {
  font-size: var(--font-size-sm);
  color: var(--gray-400);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .tc-hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .tc-hero__actions {
    justify-content: flex-end;
  }
}
