/* Images Styles - Paris Sportifs Tennis */

.hero-image {
    width: 100%;
  
    object-fit: cover;
    margin: 0 0 2.5rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.article-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1), 0 2px 6px -2px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.15), 0 4px 10px -4px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 640px) {
    .hero-image {
        max-height: 280px;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .article-image {
        margin: 1.5rem 0;
        border-radius: 8px;
    }
}

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .hero-image,
    .article-image {
        box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.4), 0 2px 6px -2px rgba(0, 0, 0, 0.3);
    }
    
    .article-image:hover {
        box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.5), 0 4px 10px -4px rgba(0, 0, 0, 0.35);
    }
}

/* Print styles */
@media print {
    .hero-image,
    .article-image {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
