.tcl-breadcrumbs {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
}

.tcl-breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tcl-breadcrumbs li::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--color-text-muted);
}

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

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

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

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

.tcl-page-intro {
  max-width: 48rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

.tcl-page-meta {
  max-width: 44rem;
  color: var(--color-text-muted);
}

.tcl-terms-section {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
}

.tcl-terms-section h2 {
  margin-bottom: var(--space-4);
}

.tcl-terms-section ul,
.tcl-terms-section ol {
  margin-bottom: var(--space-4);
}

.tcl-terms-section li {
  color: var(--color-text);
}

.tcl-terms-section + .tcl-terms-section {
  margin-top: 0;
}

.tcl-terms-cta {
  background: linear-gradient(135deg, var(--color-primary-soft), var(--gray-100));
  box-shadow: var(--shadow-md);
}

.tcl-terms-cta-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.tcl-terms-cta-inner h2 {
  margin-bottom: 0;
}

.tcl-terms-cta-inner p {
  margin-bottom: 0;
  max-width: 40rem;
}

.tcl-terms-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 767px) {
  .tcl-page-header {
    margin-bottom: var(--space-6);
  }

  .tcl-terms-section {
    padding: var(--space-4);
  }
}
