main {
  background-color: var(--color-bg);
}

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

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

.tac-breadcrumbs li::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-gray-300);
}

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

.tac-breadcrumbs li[aria-current="page"] {
  color: var(--color-text);
}

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



.tac-section {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-soft-subtle);
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-6);
}

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

.tac-section p:last-child {
  margin-bottom: 0;
}

.tac-list {
  padding-left: var(--space-4);
  list-style: disc;
  color: var(--color-text-muted);
}

.tac-list li {
  margin-bottom: var(--space-2);
}

.tac-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .tac-section {
    padding: var(--space-4);
  }

  .tac-header {
    margin-bottom: var(--space-6);
  }
}
