/* 新闻页面样式 */
.news-main {
    padding: 100px 0 50px;
    min-height: 60vh;
}

.news-img {
    position: relative;
    margin-top: -150px;
}

.news-layout {
    position: relative;
    min-height: 300px;
    margin-top: 50px;
}

.news-featured-image {
    position: absolute;
    top: -116px;
    left: -12px;
    z-index: 1;
}

.news-featured-image img {
    max-width: 314px;
    object-fit: cover;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 6.5rem;
    position: relative;
    z-index: 2;
}

.news-item {
    position: relative;
    background: white;
}


.news-date {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-title {
    color: #333;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-title::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 34px;
    bottom: 0;
    height: 3.5rem;
    width: 6px;
    background-color: var(--main-color);
}

@media (max-width: 768px) {
    .news-main {
        padding-top: 40px;
    }

    .news-img {
        margin-top: -40px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1rem;
    }

    .news-layout {
        margin: 0 auto;
        margin-top: 20px;
    }

    .news-title::before {
        width: 0;
    }

    .news-title {
        font-size: 0.9rem;
    }

    .news-featured-image img {
        height: 150px;
    }
}