 /* --- Header Section --- */
    .page-header {
        position: relative;
        padding: 60px 20px;
        text-align: center;
        background: radial-gradient(circle at center, rgba(255, 0, 92, 0.15) 0%, transparent 70%);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        margin-bottom: 40px;
    }
    .page-title {
        font-family: 'Rubik', sans-serif;
        font-size: 3rem;
        font-weight: 900;
        color: white;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: -1px;
    }
    .page-title span { color: var(--primary); }
    .page-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

    /* --- News Grid --- */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
        padding: 0 5% 60px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* --- News Card --- */
    .news-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .news-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(255, 0, 92, 0.2);
    }

    .card-image-wrapper {
        position: relative;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
        overflow: hidden;
    }

    .card-image {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-card:hover .card-image { transform: scale(1.05); }

    .card-badges {
        position: absolute;
        top: 15px; right: 15px;
        display: flex; gap: 8px;
    }

    .badge {
        background: rgba(0,0,0,0.7);
        backdrop-filter: blur(4px);
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 700;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .badge.new { background: var(--primary); border-color: var(--primary); }

    .card-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .card-meta {
        display: flex;
        gap: 15px;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 12px;
    }
    .card-meta i { color: var(--primary); margin-left: 5px; }

    .card-title {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.4;
        color: white;
    }

    .card-excerpt {
        font-size: 0.95rem;
        color: #bbb;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-footer {
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .read-more {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .read-more:hover { gap: 8px; }

    /* --- Pagination --- */
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 80px;
    }
    .page-btn {
        width: 40px; height: 40px;
        display: flex; align-items: center; justify-content: center;
        background: var(--bg-card);
        border: 1px solid var(--border);
        color: white;
        border-radius: 8px;
        transition: 0.2s;
    }
    .page-btn:hover, .page-btn.active {
        background: var(--primary);
        border-color: var(--primary);
    }
    .page-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
