
/* Enhanced Featured Article Styles - El País Style */
.featured-article {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.featured-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.featured-article .featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.featured-article .article-category {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 20px 0 20px;
}

.featured-article h1 {
    font-size: 36px;
    line-height: 1.2;
    margin: 15px 20px;
    font-weight: 700;
    color: #2c3e50;
}

.featured-article .article-meta {
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.featured-article .article-excerpt {
    padding: 0 20px 20px;
    font-size: 18px;
    line-height: 1.5;
    color: #555;
}

.featured-article .btn {
    display: inline-block;
    margin: 0 20px 20px 20px;
    padding: 12px 25px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.featured-article .btn:hover {
    background: #1a252f;
}

/* Add default image if missing */
.featured-article:not(:has(.featured-image))::before {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

@media (max-width: 768px) {
    .featured-article h1 {
        font-size: 24px;
    }
    
    .featured-article .featured-image {
        height: 250px;
    }
    
    .featured-article .article-excerpt {
        font-size: 16px;
    }
}
