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

.news-detail-container {
    max-width: 900px;
    margin: 40px auto 60px auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 40px;
    border: 2px solid #65E0FF; /* Đồng bộ viền xanh sáng của Tìm Phòng */
}

@media (max-width: 768px) {
    .news-detail-container {
        margin: 20px;
        padding: 20px;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #718096;
    margin-bottom: 25px;
}
.breadcrumb a {
    color: #272fbd;
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

.news-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 30px;
    color: #718096;
    font-size: 14px;
}

.news-content {
    color: #2d3748;
    font-size: 17px;
    line-height: 1.8;
}

.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.news-content h2, .news-content h3 {
    color: #1a202c;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-content p {
    margin-bottom: 20px;
}

/* Related News Section */
.related-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.related-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 25px;
}

.related-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;
}
.news-img-wrap {
    height: 200px;
    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-card-title {
    color: #1a202c;
    font-size: 16px;
    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;
}
