.news-home {
    max-width: 1200px;
    margin: 60px auto;
    box-sizing: border-box;
}

.nh-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.resources-line {
    width: 60px;
    height: 3px;
    background: #1a6b8a;
    border-radius: 2px;
    margin-bottom: 25px;
}

.nh-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.nh-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: #1e293b;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.25s;
    border: 1px solid #e5e7eb;
}

.nh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    border-color: #2c7da0;
}

.nh-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.nh-body {
    padding: 14px;
    flex: 1;
}

.nh-date {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.nh-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nh-preview {
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-in.delay-3 { transition-delay: 0.5s; }

@media (max-width: 1200px) {
    .nh-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .nh-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nh-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .nh-title {
        font-size: 22px;
    }

    .nh-image img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .nh-grid {
        grid-template-columns: 1fr;
    }

    .nh-image img {
        height: 180px;
    }

    .nh-title {
        font-size: 20px;
    }
}