/* News List Enhanced Styles - SEO/Data Theme (Refined: Minimalist) */

/* PC Styles */
@media (min-width: 1024px) {
    .newscenter-list ul {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
        /* Compensate for column padding */
    }

    .newscenter-list li {
        float: none !important;
        /* Override float */
        display: flex;
        margin-bottom: 30px;
    }

    .newscenter-list li a {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        border: none;
        /* Ensure no border */
    }

    /* Hover Lift & Shadow */
    .newscenter-list li:hover a {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 64, 152, 0.15);
        /* Blue-ish shadow for tech feel */
    }

    /* Image Container */
    .news-img {
        width: 100%;
        height: 220px;
        /* Fixed height for consistency */
        overflow: hidden;
        position: relative;
        margin: 0;
    }

    /* 1. Image Zoom (Smoother) */
    .news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
        /* Smooth easing */
        will-change: transform;
    }

    .newscenter-list li:hover .news-img img {
        transform: scale(1.08);
        /* Subtle zoom */
    }

    /* 2. Shine Effect (The "Little Bit of Animation") */
    .news-img::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
        transform: skewX(-25deg);
        z-index: 2;
        pointer-events: none;
        transition: none;
    }

    .newscenter-list li:hover .news-img::before {
        animation: shineEffect 0.75s ease-in-out;
    }

    @keyframes shineEffect {
        100% {
            left: 200%;
        }
    }

    /* Text Container */
    .news-text {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 4;
        background: #fff;
    }

    /* Title */
    .news-text .name {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 12px;
        line-height: 1.4;
        transition: color 0.3s ease;
        white-space: normal;
        /* Allow wrap */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        height: 50px;
        /* Fixed height for 2 lines */
    }

    .newscenter-list li:hover .news-text .name {
        color: #004098;
        /* Brand Blue */
    }

    /* Description */
    .news-text .desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        height: 66px;
        /* 3 lines */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    /* Date & Meta */
    .news-text .date {
        margin-top: auto;
        font-size: 12px;
        color: #999;
        display: flex;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .news-text .date::before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 14px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999999'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z'/%3E%3C/svg%3E") no-repeat center;
        margin-right: 6px;
    }
}