/**
 * Sylvan Category Hero Styles
 * 
 * These are starter styles - adjust colors, spacing, and typography
 * to match Sylvan Studio's branding.
 */

.sylvan-category-hero {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: center;
}

.sylvan-category-hero__headline {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.sylvan-category-hero__content {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.sylvan-category-hero__content p:last-child {
    margin-bottom: 0;
}

.sylvan-category-hero__content ul,
.sylvan-category-hero__content ol {
    display: inline-block;
    text-align: left;
    margin: 1rem auto;
}

.sylvan-category-hero__cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sylvan-category-hero__cta:hover {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sylvan-category-hero {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .sylvan-category-hero__headline {
        font-size: 1.5rem;
    }

    .sylvan-category-hero__content {
        font-size: 1rem;
    }
}
