/* News Page Specific Styles */

/* Hero Section */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.news-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a2e 100%);
    padding: 80px 20px 60px;
    margin-top: 70px;
    border-bottom: 3px solid var(--primary-green);
}

.hero-badge {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-meta i {
    margin-right: 8px;
    color: var(--primary-green);
}

/* News Content Wrapper */
.news-content-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

.news-grid-section {
    flex: 3;
}

.news-sidebar {
    flex: 1;
    min-width: 300px;
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--surface-dark);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.filter-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* News Articles Grid */
.news-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.news-card {
    background: var(--surface-dark);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
}

.news-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.news-category-badge.champions {
    background: #0066cc;
}

.news-category-badge.transfers {
    background: #ff6b35;
}

.news-category-badge.highlights {
    background: #9b59b6;
}

.news-card-content {
    padding: 20px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.news-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.news-time i {
    margin-right: 5px;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: gap 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 40px 0;
}

.btn-load-more {
    padding: 15px 40px;
    background: var(--surface-dark);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: var(--primary-green);
    color: white;
}

.btn-load-more i {
    margin-right: 8px;
}

.widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i {
    color: var(--primary-green);
}

.trending-list {
    list-style: none;
}

.trending-list li {
    margin-bottom: 12px;
}

.trending-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.trending-list a:hover {
    color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-content-wrapper {
        flex-direction: column;
    }

    .news-sidebar {
        order: 2;
    }

    .hero-title {
        font-size: 28px;
    }

    .news-articles-grid {
        grid-template-columns: 1fr;
    }

    .category-filter {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .filter-btn {
        white-space: nowrap;
    }
}