/* Our Chapters Section Styles */
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

/* Chapters page hero */
.chapters-hero-content {
  text-align: center;
}

.chapters-hero-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.chapters-hero-text {
  width: 100%;
  max-width: 900px;
}

.chapters-hero-cta {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Why join bullets */
.chapters-benefits {
  max-width: 900px;
  margin: 24px auto 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.chapters-benefits li {
  margin: 12px 0;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.7;
}

.chapter-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
}

.chapter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.chapter-card img {
  height: 120px;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  object-fit: contain;
}

.chapter-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.chapter-card p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.chapter-card a {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.chapter-card a:hover {
  color: var(--primary);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .chapters-grid {
    grid-template-columns: 1fr;
  }
}
