/* What is Fascism page */
.fascism-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
}

.fascism-intro {
  margin-bottom: 40px;
  font-size: 1.05rem;
  color: #444;
}

.fascism-section {
  margin-bottom: 48px;
  scroll-margin-top: 80px;
}

.fascism-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.anchor-icon {
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--color-red);
}

.fascism-section h2:hover .anchor-icon {
  opacity: 1;
}

.fascism-section p {
  margin-bottom: 10px;
  color: #333;
}

.fascism-section .source-links {
  margin-top: 12px;
  font-size: 0.85rem;
}

.fascism-section .source-links a {
  color: var(--color-blue);
  margin-right: 10px;
}

/* Sticky TOC (desktop only) */
.fascism-toc {
  display: none;
}

@media (min-width: 1024px) {
  .fascism-layout {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 48px;
    align-items: start;
  }

  .fascism-content {
    min-width: 0;
  }

  .fascism-toc {
    display: block;
    position: sticky;
    top: 80px;
    background: var(--color-white);
    border: 1px solid #ddd;
    border-left: 4px solid var(--color-red);
    border-radius: 4px;
    padding: 20px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .fascism-toc h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-red);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
  }

  .fascism-toc ol {
    list-style: decimal;
    padding-left: 18px;
  }

  .fascism-toc li {
    margin-bottom: 6px;
  }

  .fascism-toc a {
    font-size: 0.82rem;
    color: #444;
    line-height: 1.4;
    text-decoration: none;
  }

  .fascism-toc a:hover {
    color: var(--color-red);
  }
}
