
   .single-news-section {
    background-color: var(--bg-secondary);
}

.single-news-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

.news-main-content {
    flex: 1;
    min-width: 0; 
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    padding: 30px;
}

.single-article .article-title {
    font-size: 2.2rem;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-meta .meta-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta .meta-item i {
    color: #d4af37; 
}

.article-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: #1a1a1a;
}

.share-box {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-box h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
}

.social-share {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #333;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.share-btn.fb:hover { background: #3b5998; color: #fff; }
.share-btn.tw:hover { background: #1da1f2; color: #fff; }
.share-btn.wa:hover { background: #25d366; color: #fff; }

.news-sidebar {
    width: 350px;
    flex-shrink: 0;
}

.widget {
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: #d4af37;
}

.recent-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-news-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recent-news-item .img-box {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-news-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-news-item:hover .img-box img {
    transform: scale(1.1);
}

.recent-news-item .text-box {
    flex: 1;
}

.recent-news-item .text-box h4 {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.recent-news-item .text-box h4 a {
    color: var(--text-main);
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-news-item .text-box h4 a:hover {
    color: #d4af37;
}

.recent-news-item .text-box .date {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}


@media (max-width: 991px) {
    .news-sidebar {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .single-news-wrapper {
        gap: 20px;
    }
    
    .news-main-content {
        padding: 20px;
    }
    
    .single-article .article-title {
        font-size: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .share-box {
        flex-direction: column;
        align-items: flex-start;
    }
}