/* ============================================================
   TAKE ACTION PAGE
   ============================================================ */

/* --- Hero (matches fascism, WRM, about pages) --- */
.action-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 40%, #1f1a2e 100%);
  color: var(--color-white);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.action-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(178, 34, 52, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.action-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.action-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 8px;
}

.action-hero h1 .accent {
  color: var(--color-red);
}

.action-hero .subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.action-hero .intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

/* --- Body --- */
.action-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Numbered Action Sections --- */
.action-card-section {
  padding: 48px 0;
}

.action-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.action-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  opacity: 0.25;
  flex-shrink: 0;
  min-width: 56px;
  text-align: center;
}

.action-card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.action-tagline {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-blue);
  margin: 0;
}

/* --- Card Body --- */
.action-card-body {
  color: #333;
  line-height: 1.7;
}

.action-card-body p {
  margin-bottom: 14px;
}

.action-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-blue);
  margin: 28px 0 12px;
}

.action-card-body ol,
.action-card-body ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.action-card-body li {
  margin-bottom: 10px;
}

.action-card-body li a {
  color: var(--color-blue);
}

.action-card-body li a:hover {
  color: var(--color-red);
}

/* --- Highlight Box (CTA) --- */
.action-highlight {
  background: rgba(60, 59, 110, 0.06);
  border-left: 4px solid var(--color-gold);
  padding: 24px 28px;
  margin: 24px 0;
  border-radius: 0 6px 6px 0;
}

.action-highlight h3 {
  margin-top: 0;
  color: var(--color-red);
}

.action-highlight p {
  margin-bottom: 16px;
}

.action-highlight .btn {
  margin-top: 4px;
}

/* --- Source Links --- */
.action-sources {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.action-sources h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.action-sources ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.action-sources li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.action-sources li::before {
  content: '\2192';
  color: var(--color-gold);
  margin-right: 8px;
}

.action-sources a {
  color: var(--color-blue);
}

.action-sources a:hover {
  color: var(--color-red);
}

/* --- Mobile --- */
@media (max-width: 639px) {
  .action-hero {
    padding: 48px 16px 40px;
  }

  .action-hero h1 {
    font-size: 2.2rem;
  }

  .action-hero .intro-text {
    font-size: 0.95rem;
  }

  .action-body {
    padding: 0 16px;
  }

  .action-card-section {
    padding: 32px 0;
  }

  .action-card-header {
    gap: 12px;
  }

  .action-number {
    font-size: 2rem;
    min-width: 40px;
  }

  .action-card-header h2 {
    font-size: 1.4rem;
  }

  .action-highlight {
    padding: 18px 20px;
  }
}
