    .news-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-left: var(--size-grid001);
    padding-right: var(--size-grid001);
    padding-top: 20px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

.news-item {
    flex: 1 1 calc(33.333% - 1rem); 
    box-sizing: border-box;
    text-align: left; 
}

.news-item img {
    width: 100%;
    height: 52.6%;
    border-radius: 6px;
    transition: box-shadow 0.3s, transform 0.3s;
    display: block;
    margin-bottom: 10px;
    object-fit: cover;
}
.news-item img:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.news-item h2 {
    margin: 0 0 10px;
    font-family: var(--font-family-head);
    font-size: 1.2rem;
    line-height: 160%;
    text-decoration: none;
    -webkit-letter-spacing: calc(0.02rem - 0.02em);
    -moz-letter-spacing: calc(0.02rem - 0.02em);
    -ms-letter-spacing: calc(0.02rem - 0.02em);
    letter-spacing: calc(0.02rem - 0.02em);
    text-underline-offset: 0.2em;
}
.news-item h2 a {
    color: #000;
    text-decoration: none;
}
.news-item h2 a:hover {
    color: #0053A6;
    text-decoration: none;
}

.news-item p {
    margin: 0;
    font-family: var(--font-family-text);
    line-height: 150%;
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .news-item {
        flex: 1 1 100%;
    }
}
.volkswagen-title-tconlh {
        position: absolute; 
        top: 280px;
        left: 50%;
        transform: translateX(-50%);
        transition: top 0.5s ease, opacity 0.5s ease;
        font-size: 1.5rem; 
        opacity: 1;
    }

    .volkswagen-title-lhe {
            display: inline-block;
            color: #FFF; /* Màu chữ ban đầu */
            white-space: nowrap;
            overflow: hidden;
            line-height: 160%;
        }

        .volkswagen-letter {
            display: inline-block;
            opacity: 0;
            transform: translateX(-100%);
            transition: transform 0.5s, opacity 0.5s;
        }

        .volkswagen-letter.visible {
            opacity: 1;
            transform: translateX(0);
        }

        @keyframes colorChange {
            0%, 100% {
                color: white;
                text-shadow: 0 0 5px red;
            }
            33% {
                color: #00356A;
                text-shadow: 0 0 5px #fff;
            }
            66% {
                color: red;
                text-shadow: 0 0 5px #fff;
            }
        }
    .color-changing {
            animation: colorChange 5s infinite;
        }
        .whitespace {
            display: inline-block;
            width: 0.3em;
        }