/* Estilos para imágenes del artículo de apuestas de golf */

.hero-image {
    width: 100%;
    margin: 0 0 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(26, 71, 42, 0.15);
}

.article-image {
    margin: 2rem 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 71, 42, 0.12);
}

@media (min-width: 768px) {
    .hero-image {
        margin: 0 0 2.5rem;
    }
    
    .hero-image img {
        border-radius: 16px;
    }
    
    .article-image {
        margin: 2.5rem 0;
    }
    
    .article-image img {
        border-radius: 12px;
    }
}

@media (prefers-color-scheme: dark) {
    .hero-image img,
    .article-image img {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

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