/**
 * Features Block Styles
 * 
 * Minimal custom CSS - most styling handled by Tailwind in template.php
 * Only includes what cannot be done with Tailwind utilities
 */

/* Feature text paragraph spacing (can't use Tailwind prose without affecting all content) */
.feature-text p {
    margin-bottom: 1rem;
}

.feature-text p:last-child {
    margin-bottom: 0;
}

/* Initial states for GSAP animations on desktop */
@media (min-width: 992px) {
    /* Hide elements before GSAP entrance timeline */
    .features-parent-content,
    .features-images-wrapper,
    .feature-content {
        opacity: 0;
    }
    
    /* First feature content will be shown by entrance timeline */
    /* Others will be shown as they scroll into view */
}

