.news-detail-hero {
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 76px;
    position: relative;
}

.news-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.news-detail-hero h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
    margin-bottom: 20px;
}

.news-meta-hero {
    display: flex;
    gap: 30px;
    font-size: 16px;
    opacity: 0.9;
}

.news-meta-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-content-section {
    padding: 80px 0;
    background: white;
}

.news-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.news-content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-green);
    margin: 40px 0 20px 0;
}

.news-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-green);
    margin: 30px 0 15px 0;
}

.news-content p {
    margin-bottom: 20px;
}

.news-content ul, .news-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.news-content li {
    margin-bottom: 10px;
}

.news-content blockquote {
    background: var(--section-bg);
    border-left: 4px solid var(--primary-green);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 20px;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-section {
    background: var(--section-bg);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

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

.share-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn.facebook {
    background: #3b5998;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.telegram {
    background: #0088cc;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: white;
}

.related-news-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.related-news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.related-news-card .card-body {
    padding: 25px;
}

.related-news-card .card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-news-card .card-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-back {
    background: var(--primary-green);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.btn-back:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    color: white;
}

.newsletter-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    padding: 50px 0;
    text-align: center;
}

.newsletter-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 16px;
}

.newsletter-form .btn {
    background: var(--orange);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
}

.newsletter-form .btn:hover {
    background: #e68910;
}

@media (max-width: 768px) {
    .news-detail-hero {
        height: 350px;
    }
    
    .news-detail-hero h1 {
        font-size: 32px;
    }
    
    .news-meta-hero {
        flex-direction: column;
        gap: 15px;
    }
    
    .share-buttons {
        justify-content: center;
    }
}