﻿.thapmuoi-page-section {
    padding: 60px 0;
    background: var(--thapmuoi-gray-light);
}

.thapmuoi-breadcrumb-wrapper {
    margin: -45px 0 30px 0;
}

.thapmuoi-breadcrumb {
    padding: 6px 14px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    display: inline-flex;
    border: 1px solid rgba(11,61,145,0.08);
    font-size: 0.8rem;
}

    .thapmuoi-breadcrumb ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .thapmuoi-breadcrumb li {
        display: flex;
        align-items: center;
        color: var(--thapmuoi-text-muted);
        font-size: 0.8rem;
    }

        .thapmuoi-breadcrumb li a {
            color: var(--thapmuoi-blue);
            text-decoration: none;
            font-weight: 500;
            padding: 3px 6px;
            border-radius: 20px;
            transition: var(--thapmuoi-transition);
            background: rgba(11,61,145,0.02);
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
        }

            .thapmuoi-breadcrumb li a:hover {
                background: var(--thapmuoi-blue);
                color: white;
            }

                .thapmuoi-breadcrumb li a:hover i {
                    color: white;
                }

        .thapmuoi-breadcrumb li i {
            margin: 0 4px;
            color: var(--thapmuoi-blue);
            font-size: 0.65rem;
            opacity: 0.4;
            transition: var(--thapmuoi-transition);
        }

        .thapmuoi-breadcrumb li:last-child {
            color: var(--thapmuoi-red);
            font-weight: 500;
            background: rgba(230,57,70,0.04);
            padding: 3px 10px;
            border-radius: 20px;
            margin-left: 2px;
            font-size: 0.8rem;
            max-width: 300px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

.thapmuoi-page-container {
    max-width: 900px;
    margin: 0 auto;
}

.thapmuoi-page {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--thapmuoi-shadow);
}

.thapmuoi-page-title {
    font-size: 2.2rem;
    color: var(--thapmuoi-blue);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

    .thapmuoi-page-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--thapmuoi-red);
        border-radius: 2px;
    }

.thapmuoi-page-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--thapmuoi-text-muted);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

    .thapmuoi-page-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .thapmuoi-page-meta i {
        color: var(--thapmuoi-blue);
    }

.thapmuoi-page-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--thapmuoi-text-dark);
}

    .thapmuoi-page-content p {
        margin-bottom: 20px;
    }

    .thapmuoi-page-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin: 25px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .thapmuoi-page-content h2 {
        font-size: 1.8rem;
        color: var(--thapmuoi-blue);
        margin: 35px 0 15px;
        font-weight: 600;
        line-height: 1.4;
    }

    .thapmuoi-page-content h3 {
        font-size: 1.4rem;
        color: var(--thapmuoi-blue);
        margin: 30px 0 12px;
        font-weight: 500;
        line-height: 1.4;
    }

    .thapmuoi-page-content h4 {
        font-size: 1.2rem;
        color: var(--thapmuoi-blue);
        margin: 25px 0 10px;
        font-weight: 500;
        line-height: 1.4;
    }

    .thapmuoi-page-content blockquote {
        padding: 15px 20px;
        background: rgba(11,61,145,0.03);
        border-left: 4px solid var(--thapmuoi-gold);
        font-style: italic;
        margin: 20px 0;
        border-radius: 8px;
    }

    .thapmuoi-page-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    .thapmuoi-page-content th,
    .thapmuoi-page-content td {
        padding: 10px;
        border: 1px solid #dee2e6;
    }

    .thapmuoi-page-content th {
        background: rgba(11,61,145,0.05);
        font-weight: 600;
    }

    .thapmuoi-page-content ul,
    .thapmuoi-page-content ol {
        margin: 15px 0;
        padding-left: 30px;
    }

    .thapmuoi-page-content li {
        margin-bottom: 5px;
    }

    .thapmuoi-page-content a {
        color: var(--thapmuoi-blue);
        text-decoration: none;
        border-bottom: 1px solid rgba(11,61,145,0.2);
        transition: var(--thapmuoi-transition);
    }

        .thapmuoi-page-content a:hover {
            color: var(--thapmuoi-red);
            border-bottom-color: var(--thapmuoi-red);
        }

    .thapmuoi-page-content .file-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 10px;
        background: rgba(11,61,145,0.05);
        border-radius: 30px;
        border: 1px solid rgba(11,61,145,0.1);
        margin: 5px 0;
    }

        .thapmuoi-page-content .file-link i {
            color: var(--thapmuoi-blue);
        }

        .thapmuoi-page-content .file-link:hover {
            background: var(--thapmuoi-blue);
            color: white;
            border-color: var(--thapmuoi-blue);
        }

            .thapmuoi-page-content .file-link:hover i {
                color: white;
            }

.thapmuoi-page-empty {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--thapmuoi-shadow);
}

    .thapmuoi-page-empty i {
        font-size: 4rem;
        color: var(--thapmuoi-blue);
        margin-bottom: 20px;
    }

    .thapmuoi-page-empty h2 {
        font-size: 2rem;
        color: var(--thapmuoi-blue);
        margin-bottom: 15px;
    }

    .thapmuoi-page-empty p {
        font-size: 1.1rem;
        color: var(--thapmuoi-text-muted);
    }

@media (max-width: 768px) {
    .thapmuoi-page {
        padding: 25px;
    }

    .thapmuoi-page-title {
        font-size: 1.8rem;
    }

    .thapmuoi-page-meta {
        gap: 15px;
        font-size: 0.85rem;
    }

    .thapmuoi-page-empty {
        padding: 40px 20px;
    }

        .thapmuoi-page-empty h2 {
            font-size: 1.6rem;
        }
}

@media (max-width: 480px) {
    .thapmuoi-page {
        padding: 20px;
    }

    .thapmuoi-page-title {
        font-size: 1.5rem;
    }

    .thapmuoi-page-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .thapmuoi-breadcrumb li:last-child {
        max-width: 180px;
    }
}
