/* News Pages Styles */
.news-hero {
    background: linear-gradient(135deg, #4CA633 0%, #3d8a2a 100%);
    padding: 100px 0 60px;
    color: white;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: #fff;
    padding: 20px 0;
    margin-top: 80px;
}

.bd-pns a {
    color: #666;
    text-decoration: none;
}

.bd-pns a:hover {
    color: #4CA633;
}

.bd-pns .nav-active {
    color: #4CA633;
}

/* News Cards */
.news-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

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

/* Clickable News Cards */
a .news-card {
    cursor: pointer;
}

a .news-card .card-title {
    color: #212529;
    transition: color 0.3s ease;
}

a:hover .news-card .card-title {
    color: #4CA633;
}

a .news-card .card-text {
    color: #6c757d;
}

a:hover {
    text-decoration: none;
}

.news-card-img {
    height: 200px;
    object-fit: cover;
}

.featured-news .news-card-img {
    height: 250px;
}

.news-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Category Sidebar */
.category-sidebar {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
}

.category-link {
    display: block;
    padding: 10px 15px;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.category-link:hover, .category-link.active {
    background: #4CA633;
    color: white;
    text-decoration: none;
}

/* Share Buttons */
.btn-share {
    border: none;
    background: none;
    color: #6c757d;
    font-size: 1.2rem;
    padding: 5px 10px;
    margin: 0 2px;
    transition: color 0.3s ease;
}

.btn-share:hover {
    color: #4CA633;
}

/* Article Detail Styles */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-content h1, .article-content h2, .article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.article-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.article-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.share-buttons {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin: 0 8px;
    transition: transform 0.3s ease;
}

.btn-share:hover {
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

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

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

.btn-share.linkedin {
    background: #0077b5;
}

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

.btn-share.copy {
    background: #6c757d;
}

/* Related News Cards */
.related-news-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.related-news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-news-img {
    height: 120px;
    object-fit: cover;
}
