﻿:root {
    --mn-primary: var(--blueText);
    --mn-secondary: #00aaff;
    --mn-activeBlue: #5ea6f3;
    --mn-light-bg: #f0f7ff; /* Xanh cực nhạt cho footer/related */
    --mn-text: #444;
    --mn-radius: 16px;
    --mn-titleBlue: #007bff;
}

.ps-breadcrumb a {
    color: var(--mn-activeBlue);
    text-decoration: none;
    font-weight: 500;
}

.ps-breadcrumb a:hover {
    color: blue;
    text-decoration: underline;
}

.ps-breadcrumb .breadcrumb-item.active {
    color: var(--mn-primary);
}

/* News Cards */
.ps-card {
    border: none;
    border-radius: var(--mn-radius);
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .ps-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,123,255,0.15);
    }

.ps-card-img-wrapper {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.ps-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ps-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Detail Page */
.ps-detail-title {
    color: var(--mn-titleBlue);
    font-weight: 800;
    font-size: 2.2rem;
}

.ps-content {
    font-size: 1.15rem;
    line-height: 1.9;
}

    .ps-content img {
        max-width: 100%;
        border-radius: var(--mn-radius);
        margin: 20px 0;
    }

.ps-page-title {
    color: var(--mn-titleBlue);
    text-transform: uppercase;
}

/* Related Section & Footer area */
.ps-footer-section {
    background-color: var(--mn-light-bg);
    border-top: 1px solid #dee2e6;
}

/* Pagination */
.ps-pagination .page-link {
    border: none;
    margin: 0 5px;
    border-radius: 8px;
    color: var(--mn-primary);
    font-weight: 600;
}

.ps-pagination .page-item.active .page-link {
    background: var(--mn-primary);
    color: #fff;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ps-share {
    font-size: 0.85rem;
    color: #6b7280;
}

.ps-share-label {
    font-weight: 600;
    color: #6b7280;
}
