.hero-section {
    margin-bottom: 40px;
}

.featured-articles {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.main-featured {
    background-color: #e5e7eb;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d61c1c;
}

.featured-content .category {
    background-color: #d61c1c;
    color: white;
    padding: 4px 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.featured-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.featured-content h2 a {
    color: #1a1a1a;
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: #d61c1c;
}

.featured-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 10px;
}

.featured-meta {
    font-size: 0.9rem;
    color: #666;
}

.side-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-featured-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.side-featured-item:last-child {
    border-bottom: none;
}

.side-featured-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.side-featured-content h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}

.side-featured-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.side-featured-content h3 a:hover {
    color: #d61c1c;
}

.side-featured-meta {
    font-size: 0.85rem;
    color: #666;
}

.recent-articles {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    border-bottom: 3px solid #d61c1c;
    padding-bottom: 10px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-content {
    padding: 20px;
}

.article-card .category {
    background-color: #d61c1c;
    color: white;
    padding: 4px 8px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.article-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.article-card h3 a:hover {
    color: #d61c1c;
}

.article-card .excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
}

.article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.article-card-meta .author {
    font-weight: 500;
}

.article-card-meta .date {
    color: #999;
}

/* Responsive design */
@media (max-width: 768px) {
    .featured-articles {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content h2 {
        font-size: 1.4rem;
    }
    
    .side-featured-item {
        flex-direction: column;
    }
    
    .side-featured-item img {
        width: 100%;
        height: 150px;
    }
}