/* Modern News Section */
.news-showcase {
    margin-bottom: 40px;
}

.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.news-image-large {
    position: relative;
    height: 350px;
}

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

.news-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.news-info-large {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-category.featured {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.news-date-large {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.news-info-large h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
    line-height: 1.3;
}

.news-info-large p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.news-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 14px;
}

.news-stats i {
    color: #3b82f6;
}

.news-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: #f1f5f9;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: #475569;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateY(-2px);
}

.news-grid.modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.news-card.modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.news-card.modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.news-card.modern .news-image {
    position: relative;
    height: 200px;
}

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

.news-card.modern:hover .news-image img {
    transform: scale(1.05);
}

.news-reading-time {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    backdrop-filter: blur(10px);
}

.news-card.modern .news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.news-card.modern .news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-category.events {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.news-category.awards {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.news-category.innovation {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.news-category.community {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.news-card.modern h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1e293b;
    line-height: 1.4;
}

.news-card.modern p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-engagement {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
}

.news-engagement span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 12px;
}

.news-engagement i {
    color: #3b82f6;
}

.news-link.modern {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.news-link.modern:hover {
    color: #1d4ed8;
    gap: 8px;
}

.news-cta {
    text-align: center;
    margin-top: 40px;
}

.news-newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.newsletter-icon {
    font-size: 32px;
}

.newsletter-text h4 {
    margin-bottom: 5px;
    color: #1e293b;
}

.newsletter-text p {
    color: #64748b;
    margin: 0;
    font-size: 14px;
}

.news-view-all {
    text-align: center;
    margin-top: 30px;
}

.news-card.modern {
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-featured {
        grid-template-columns: 1fr;
    }
    
    .news-image-large {
        height: 250px;
    }
    
    .news-info-large {
        padding: 25px;
    }
    
    .news-info-large h3 {
        font-size: 20px;
    }
    
    .news-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .news-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .news-grid.modern {
        grid-template-columns: 1fr;
    }
    
    .news-stats {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .news-engagement {
        flex-wrap: wrap;
        gap: 10px;
    }
}