.tac-main {
  padding-top: var(--space-8);
  padding-bottom: var(--space-12);
}

.tac-hero {
  padding-bottom: var(--space-8);
}

.tac-hero__inner {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 960px) {
  .tac-hero__inner {
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    align-items: flex-start;
  }
}

.tac-hero__content {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
}

.tac-hero__lead {
  color: var(--color-text-muted);
  font-size: var(--font-size-md);
}

.tac-hero__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tac-hero__sidebar {
  position: sticky;
  top: var(--space-6);
}

@media (max-width: 959.98px) {
  .tac-hero__sidebar {
    position: static;
  }
}

.tac-toc {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.tac-toc__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.tac-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-4);
}

.tac-toc__list a {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tac-toc__list a:hover {
  color: var(--color-primary);
}

.tac-cta-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tac-cta-links__item {
  width: 100%;
  justify-content: center;
}

.tac-cta-links__simple {
  font-size: var(--font-size-sm);
}

.tac-content__inner {
  display: grid;
}

.tac-article {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

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

.tac-section + .tac-section {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-200);
}

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

.tac-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tac-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.tac-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary-soft);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.tac-section p {
  font-size: var(--font-size-sm);
}

.tac-section a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
