body {
    background: linear-gradient(135deg, #e0fdfd 0%, #fcffe0 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

.news-header {
    text-align: center;
    padding: 40px 20px 20px 20px;
}
.news-header-title {
    color: #1a202c;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}
.news-header-subtitle {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 30px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s transform, 0.3s box-shadow;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #65E0FF; /* Đồng bộ viền xanh sáng của Tìm Phòng */
}
.news-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s transform;
}
.news-card:hover .news-img {
    transform: scale(1.05);
}

.news-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
}
.news-date {
    color: #718096;
    display: flex;
    align-items: center;
    gap: 5px;
}
.news-category {
    color: #272fbd; /* Màu xanh đậm đồng bộ với text Tìm Phòng */
    font-weight: 600;
    text-transform: uppercase;
    background: #eaf1f1;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

.news-title {
    color: #1a202c;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
}
