/* News Styles */
    .news-section {
        flex: 1;
        background: var(--bg-primary);
        width: 100%;
        padding: 0 0 2rem 0;
        margin-top: 0rem;
    }

    .news-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 4rem 2rem 0;
    }

    .news-post {
        background: var(--card-bg);
        border-radius: 12px;
        padding: 2rem;
        margin-bottom: 2rem;
        backdrop-filter: blur(10px);
        border: 1px solid var(--card-border);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        transition: 0.3s;
        position: relative;
        overflow: hidden;
    }

    .news-post .mouse-glow {
        position: absolute;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease-out;
        z-index: 1;
        filter: blur(40px);
    }

    .news-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
    }

    .post-title-link {
        color: var(--color-primary);
        text-decoration: none;
        font-size: 1.8rem;
        display: block;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

    .post-title-link:hover {
        color: var(--color-secondary-light);
    }

    .post-meta {
        font-size: 0.9rem;
        color: var(--color-secondary-light);
        margin-bottom: 1.5rem;
    }

    .post-meta span {
        margin-right: 1rem;
    }

    .post-content {
        line-height: 1.6;
        color: var(--text-body);
        margin-bottom: 1.5rem;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 1rem 0;
    }

    .read-more {
        display: inline-block;
        color: #4a9eff;
        text-decoration: none;
        font-weight: 500;
        transition: transform 0.3s ease;
    }

    .read-more:hover {
        transform: translateX(5px);
    }

    .no-posts {
        text-align: center;
        padding: 3rem;
        color: var(--color-tertiary);
        font-style: italic;
        background: var(--color-overlay-sm);
        border-radius: 12px;
        margin: 2rem 0;
    }






    
    /* News Section */
    .news-container {
        padding: 7rem 0;
    }

    .news-posts {
        display: grid;
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .news-post {
        background: rgba(24, 24, 24, 0.5);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 2rem;
        transition: 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .news-post .mouse-glow {
        position: absolute;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease-out;
        z-index: 1;
        filter: blur(40px);
    }

    .news-post:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.05);
        transition: 0.3s ease;
    }

    .news-post h2 {
        font-size: 2em;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .post-meta {
        display: flex;
        gap: 1rem;
        color: #aaa;
        font-size: 0.9em;
        margin-bottom: 1.5rem;
    }

    .post-meta .author {
        padding-left: 1rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .post-content {
        color: #e0e0e0;
        font-size: 1.1em;
        line-height: 1.7;
    }

    .post-content p {
        margin-bottom: 1rem;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 1rem 0;
    }

    .post-content a {
        color: #4a9eff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .post-content a:hover {
        color: #6fb5ff;
        text-decoration: underline;
    }

    .no-posts {
        text-align: center;
        color: #aaa;
        font-size: 1.2em;
        padding: 3rem 0;
        font-weight: 300;
    }