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

.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);
}
