/* Premium News Page Styling */

.news-article-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.news-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 60px 40px;
    color: white;
    text-align: center;
}

.news-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-title-primary {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.news-meta-header {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    opacity: 0.9;
}

.news-meta-header i {
    margin-left: 8px;
    color: var(--accent);
}

.news-body {
    padding: 40px 80px 50px;
    font-size: 18px;
    line-height: 1.9;
    color: #334155;
    text-align: justify;
}

.news-thumbnail-wrapper {
    width: 100%;
    max-width: 900px;
    margin: -40px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.news-thumbnail {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    border: 5px solid white;
}

.news-body p {
    margin-bottom: 25px;
}

.news-body img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 30px 0;
    max-width: 100%;
    height: auto;
}

.news-footer-actions {
    padding: 30px 80px 50px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-group {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
    font-size: 18px;
}

.share-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .news-body, .news-footer-actions {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .news-header { padding: 40px 20px; }
    .news-title-primary { font-size: 26px; }
    .news-body { padding: 30px 20px; font-size: 16px; }
    .news-footer-actions { padding: 20px; flex-direction: column; gap: 20px; text-align: center; }
}
