:root {
    --primary-blue: #0056b3;
    --accent-orange: #E64A19;
    --text-color: #333;
}

/* Khung bài viết */
.newsdetail {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Tiêu đề */
.detail-title {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Meta */
.detail-meta {
    font-size: 0.9rem; 
    color: #888;
    margin-bottom: 25px;
    font-style: italic;
}

.detail-meta i {
    color: var(--accent-orange);
    margin-right: 5px;
    margin-left: 15px;
}
.detail-meta i:first-child {
    margin-left: 0;
}

/* Ảnh */
.detail-thumb img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 25px;
}

/* Nội dung */
.detail-content {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1rem;
}

.detail-content p {
    margin-bottom: 16px;
}

/* Nút quay lại */
.back-news {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-blue);
    font-weight: bold;
    text-decoration: none;
}

.back-news:hover {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .news-detail {
        padding: 25px;
    }
    .detail-title {
        font-size: 1.6rem;
    }
}
 /* ===== NỘI DUNG BÀI VIẾT CHI TIẾT ===== */
.detail-content h2 {
    color: var(--primary-blue);
    margin: 30px 0 15px;
    font-size: 1.3rem;
    border-left: 4px solid var(--accent-orange);
    padding-left: 12px;
}

.detail-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.detail-content ul li {
    margin-bottom: 10px;
}

/* ===== BÀI VIẾT LIÊN QUAN ===== */
.related-news {
    max-width: 800px;
    margin: 60px auto 0;
}

.related-news h2 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.related-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.related-item h3 {
    padding: 15px;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .related-list {
        grid-template-columns: 1fr;
    }
}
/* ===== ẢNH CHÈN TRONG BÀI VIẾT ===== */
.detail-image-inline {
    margin: 35px 0;
    text-align: center;
}

.detail-image-inline img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.detail-image-inline span {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* ===== HEADING TRONG NỘI DUNG ===== */
.detail-content h2 {
    color: var(--primary-blue);
    margin: 35px 0 15px;
    font-size: 1.35rem;
    border-left: 4px solid var(--accent-orange);
    padding-left: 12px;
}

/* ===== DANH SÁCH ===== */
.detail-content ul {
    padding-left: 22px;
    margin-bottom: 25px;
}

.detail-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}
/* ===== CTA SERVICES CUỐI BÀI ===== */
.service-cta {
    margin-top: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-left: 5px solid var(--primary-blue);
    border-radius: 6px;
}

.service-cta h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.service-cta p {
    margin-bottom: 15px;
    color: #555;
}

.service-cta a {
    color: var(--accent-orange);
    font-weight: bold;
    text-decoration: none;
}

.service-cta a:hover {
    text-decoration: underline;
}
 
