/* News and Updates Styles */

.news-card-premium {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.1);
    border-color: rgba(26, 115, 232, 0.2);
}

.news-card-premium .news-image-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.news-card-premium .news-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-premium:hover .news-image-wrap img {
    transform: scale(1.1);
}

.news-card-premium .news-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(26, 115, 232, 0.9);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.news-card-premium .news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-premium .news-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    display: block;
}

.news-card-premium .news-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.news-card-premium .news-title a {
    color: inherit;
    text-decoration: none;
}

.news-card-premium .news-title a:hover {
    color: #1a73e8;
}

.news-card-premium .news-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.news-card-premium .read-more-link {
    font-weight: 600;
    color: #1a73e8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.news-card-premium .read-more-link:hover {
    gap: 12px;
    color: #1557b0;
}

/* Single News Styles */
.single-news-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-detail-header .news-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.news-detail-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.news-detail-featured-image {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.news-detail-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.news-detail-content h2, .news-detail-content h3 {
    color: #1a1a1a;
    font-weight: 700;
    margin: 40px 0 20px;
}

.news-share-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.news-share-box h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

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

.news-social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-social-links a:hover {
    background: #1a73e8;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .news-detail-header h1 {
        font-size: 32px;
    }
    .news-detail-featured-image {
        height: 300px;
    }
    .news-share-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
