/* News Detail Page */
.news-detail-container {
    background: #fff;
}

.breadcrumb-text {
    color: #000;
}

.news-detail-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin-bottom: 20px;
}

.news-detail-meta {
    display: flex;
    gap: 30px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

.news-detail-meta i {
    margin-right: 5px;
    color: var(--color-common);
}

.news-detail-sapo {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-weight: 500;
    font-style: italic;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid var(--color-common);
    margin-bottom: 30px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
}

.news-detail-share {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Tin liên quan - Layout ngang */
.news-related-title {
    font-size: 24px;
    font-weight: 700;
    color: #264596;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #264596;
}

.news-related-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-related-card:hover {
    border: 1px solid #264596;
}

.news-related-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.news-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-related-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-related-card-content h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.5;
    flex: 1;
}

.news-related-card-content h5 a {
    color: #333;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-related-card-content h5 a:hover {
    color: #264596;
}

.news-related-card-date {
    font-size: 13px;
    color: #666;
    display: block;
}

.news-related-card-date i {
    margin-right: 5px;
    color: #264596;
}

/* Responsive */
@media (max-width: 768px) {
    .news-detail-container {
        padding: 20px;
    }

    .news-detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .news-related-title {
        font-size: 20px;
    }

    .news-related-card-image {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .news-detail-container {
        padding: 15px;
    }

    .news-detail-sapo {
        padding: 15px;
    }

    .news-related-title {
        font-size: 18px;
    }

    .news-related-card-content {
        padding: 15px;
    }
}

