/* Hero Section */
.news-hero {
    background-color: #F1FFEF;
    padding: 40px 0 60px 0;
}

.back-navigation {
    margin-bottom: 30px;
    max-width: 1300px;
    margin: auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #025836;
    font-weight: 600;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
    color: #025836;
    text-decoration: none;
}

.back-arrow {
    width: 24px;
    height: 16px;
    margin-right: 12px;
}

.back-text {
    margin-left: 4px;
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: auto;
}

.hero-text {
    flex: 1;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #025836;
    margin-bottom: 30px;
}

.news-title {
    font-size: 40px;
    font-weight: 700;
    color: #025836;
    line-height: 1.2;
    margin-bottom: 20px;
}

.news-meta {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.featured-image {
    width: 100%;
    max-width: 658px;
    height: auto;
    max-height: 480px;
    object-fit: cover;
}

/* Social Share Section */
.social-share {
    padding: 20px 0;
    max-width: 1300px;
    margin: 10px auto;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    gap: 20px;
}

.share-text {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #025836;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #034a2a;
    transform: translateY(-2px);
}

/* Article Content */
.news-article {
    background-color: white;
    overflow: hidden;
    margin-bottom: 40px;
}

.article-content {
    padding: 10px 0;
    max-width: 1300px;
    margin: auto;
}

.article-text {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    text-align: justify;
}

.tagline {
    font-weight: 600;
    color: black;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    gap: 20px;
    max-width: 1300px;
    margin: auto;
}

.gallery-item {
    flex: 1;
}

.gallery-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-container {
        padding: 0 15px;
    }
    .news-hero {
        text-align: center;
    }
    .back-link{
        margin-bottom: 10px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .news-title {
        font-size: 32px;
    }
    
    .hero-text {
        max-width: none;
    }
    
    .featured-image {
        max-width: 100%;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
        width: 100%;
    }
    
    .article-content {
        padding: 30px 20px;
    }
    
    .image-gallery {
        flex-direction: column;
        padding: 0 20px 30px 20px;
    }
    
    .newsletter-cta {
        padding: 40px 20px;
    }
    
    .cta-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .email-field {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news-hero {
        padding: 30px 0 40px 0;
        text-align: center;
    }
    .news-title {
        font-size: 28px;
    }
    
    .article-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .back-link {
        font-size: 18px;
    }
    
    .share-text {
        font-size: 18px;
    }
    
    .social-link {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .news-container {
        padding: 0 10px;
    }
    
    .news-hero {
        padding: 30px 0 40px 0;
        text-align: center;
    }
    .news-title {
        font-size: 24px;
        margin-top: 10px;
    }
    
    .article-content {
        padding: 20px 15px;
    }
    
    .image-gallery {
        padding: 0 15px 20px 15px;
        gap: 15px;
    }
    
    .newsletter-cta {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 18px;
    }
}