.tc-breadcrumbs {
  font-size: var(--font-size-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
}

.tc-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tc-breadcrumbs li::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--gray-500);
}

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

.tc-breadcrumbs a {
  color: var(--color-text-muted);
}

.tc-hero {
  padding: var(--space-32) var(--space-24);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-32);
  background: radial-gradient(circle at top left, rgba(217, 178, 111, 0.12), transparent 55%),
              linear-gradient(150deg, rgba(24, 30, 24, 0.98), rgba(10, 13, 10, 0.98));
  box-shadow: var(--shadow-subtle);
}

.tc-hero-content {
  max-width: 720px;
}

.tc-hero-lead {
  font-size: var(--font-size-md);
}

.tc-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-16);
}

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

.tc-list {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-8);
}

.tc-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-text-muted);
}

.tc-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.6rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9b26f, #f1dfb0);
}

.tc-bottom-cta {
  margin-top: var(--space-32);
}

.tc-bottom-grid {
  align-items: center;
  gap: var(--space-24);
}

.tc-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .tc-hero {
    padding: var(--space-24) var(--space-16);
  }

  .tc-bottom-actions {
    justify-content: flex-start;
  }
}
