.section-3 {
    width: 100%;
    min-height: 500px;
    position: relative;
    padding: 48px;
}

.container-section-3 {
    margin: 0 auto;
}

.section-3 .news-title {
    font-size: 48px;
    font-weight: 600;
    background-image: linear-gradient(90deg, #282828 0%, #0A84D0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* .section-3 .section-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #333;
} */

.section-3 .section-title .blue-text {
    color: #1a73e8; 
}

.section-3 .btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border: 1px solid #1a73e8;
    border-radius: 20px;
    color: #1a73e8;
    background-color: #e8f0fe;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-3 .btn-view-all:hover {
    background-color: #1a73e8;
    color: #fff;
}

.news-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    /* padding: 0 10px;  */
}

.news-link {
    text-decoration: none;
    color: inherit;
}

.news-img-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 1 / 1; 
    background-color: #f5f5f5; 
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-img {
    transform: scale(1.05); 
}

.news-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.news-author {
    color: #1a73e8;
    font-weight: 700;
}

.news-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e2e8f0;
    color: #475569;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    width: fit-content;
}

.news-title-content {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-time {
    cursor: help;
}

.empty-news {
    width: 100%;
    padding: 60px 20px;
    background-color: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    text-align: center;
    margin-top: 10px;
}

.empty-news .empty-icon {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.empty-news .empty-title {
    font-size: 20px;
    font-weight: 600;
    color: #334155;
    margin: 0 0 8px 0;
}

.empty-news .empty-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.m-b-20px {
    margin-bottom: 20px;
}