.news-hero {
    background-image: url('../images/slide.png');
    color: var(--white);
    padding: 100px 20px 30px;
    position: relative;
}

.news-hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('../images/slide.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.1;
}

.news-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.news-date {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.news-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

.breadcrumb {
    max-width: 1200px;
    margin: 20px auto 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.news-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-news {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 30px;
}

.news-text {
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.share-section {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
}

.share-section h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background-color: #1877f2; }
.share-btn.twitter { background-color: #1da1f2; }
.share-btn.linkedin { background-color: #0077b5; }
.share-btn.whatsapp { background-color: #25d366; }

.recent-articles h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.article-content h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.read-more {
    color: var(--button-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c82333;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 1.8rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-news {
        padding: 20px;
    }
}