/* Products Page Styles */

/* Products Page Hero Banner */
.products-hero-banner { height: 300px; }
.products-hero-title { font-size: 2rem; line-height: 1.2; }

@media (min-width: 768px) { 
    .products-hero-banner { height: 400px; } 
    .products-hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) { 
    .products-hero-banner { height: 500px; } 
    .products-hero-title { font-size: 3.5rem; }
}

@media (min-width: 1280px) { 
    .products-hero-banner { height: 600px; } 
}

/* Products Feature Cards */
.products-feature-card {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

@media (min-width: 768px) {
    .products-feature-card {
        padding-left: 3rem;
        padding-right: 3rem;
        gap: 1.5rem;
    }
}
