.news {
    background: var(--color-bg-2);
    width: 90%;
}

.news h1 {
    color: white;
}

.news-about {
    text-align: center;
    color: transparent;
    background: -webkit-linear-gradient(top, rgb(69, 104, 220), rgb(176, 106, 179), rgb(244, 226, 216)) fixed text;
}

.news-about::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgb(69, 104, 220), rgb(176, 106, 179), rgb(244, 226, 216), transparent);
    margin-top: 5px;
}

.news-header::after {
    content: " ";
    flex: 1 1 0;
}

.news h2 {
    color: white;
    font-size: 1.5em;
}

.news p {
    color: white;
    font-size: 1.2em;
}

.news-content {
    gap: 15px;
    margin: 20px;
}

.news-content img {
    object-fit: cover;
    max-width: 50%;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .news {
        width: 95%;
    }

    .news h1 {
        font-size: 1.4em;
    }

    .news h2 {
        font-size: 1.2em;
    }

    .news p {
        font-size: 1em;
    }

    .news-content {
        flex-direction: column;
        margin: 10px;
    }

    .news-content img {
        max-width: 100%;
    }
}