﻿.thapmuoi-breadcrumb-wrapper {
    margin: -45px 0 20px 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;
            gap: 2px;
        }

            .thapmuoi-breadcrumb li a:hover {
                background: var(--thapmuoi-blue);
                color: white;
            }

                .thapmuoi-breadcrumb li a:hover i {
                    color: white !important;
                    opacity: 1 !important;
                }

        .thapmuoi-breadcrumb li i {
            margin: 0 2px;
            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;
        }

.thapmuoi-staff-section {
    background: var(--thapmuoi-gray-light);
    padding: 30px 0 60px 0;
}

.thapmuoi-staff-header {
    text-align: center;
    margin-bottom: 50px;
}

    .thapmuoi-staff-header h2 {
        font-size: 2.5rem;
        color: var(--thapmuoi-blue);
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

        .thapmuoi-staff-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--thapmuoi-red);
            border-radius: 2px;
        }

    .thapmuoi-staff-header p {
        color: var(--thapmuoi-text-muted);
        font-size: 1.2rem;
    }

.thapmuoi-staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.thapmuoi-staff-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--thapmuoi-shadow);
    transition: var(--thapmuoi-transition);
    display: flex;
    height: 100%;
}

    .thapmuoi-staff-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--thapmuoi-shadow-hover);
    }

.thapmuoi-staff-avatar {
    width: 140px;
    min-width: 140px;
    height: 160px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid rgba(0,0,0,0.05);
}

    .thapmuoi-staff-avatar img {
        max-width: calc(100% - 20px);
        max-height: calc(100% - 20px);
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
        background: white;
        display: block;
        border-radius: 4px;
    }

.thapmuoi-staff-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thapmuoi-blue);
    font-size: 2.5rem;
    font-weight: 600;
}

.thapmuoi-staff-info {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thapmuoi-staff-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--thapmuoi-blue);
    margin-bottom: 3px;
}

.thapmuoi-staff-position {
    font-size: 0.95rem;
    color: var(--thapmuoi-red);
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.thapmuoi-staff-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

    .thapmuoi-staff-detail i {
        width: 18px;
        color: var(--thapmuoi-blue);
        font-size: 1rem;
    }

    .thapmuoi-staff-detail span {
        color: var(--thapmuoi-text-dark);
    }

    .thapmuoi-staff-detail strong {
        color: var(--thapmuoi-blue);
        font-weight: 600;
        margin-right: 3px;
    }

.thapmuoi-staff-empty {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--thapmuoi-shadow);
}

    .thapmuoi-staff-empty i {
        font-size: 4rem;
        color: var(--thapmuoi-blue);
        margin-bottom: 20px;
    }

    .thapmuoi-staff-empty h3 {
        color: var(--thapmuoi-text-dark);
        margin-bottom: 10px;
    }

    .thapmuoi-staff-empty p {
        color: var(--thapmuoi-text-muted);
    }

@media (max-width: 992px) {
    .thapmuoi-staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .thapmuoi-staff-section {
        padding: 20px 0 40px 0;
    }

    .thapmuoi-breadcrumb-wrapper {
        margin: -30px 0 15px 0;
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .thapmuoi-breadcrumb {
        padding: 8px 12px;
        width: 100%;
        box-sizing: border-box;
        font-size: 0.75rem;
    }

        .thapmuoi-breadcrumb ul {
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 2px;
        }

        .thapmuoi-breadcrumb li {
            margin-bottom: 3px;
            font-size: 0.75rem;
        }

            .thapmuoi-breadcrumb li a {
                padding: 3px 4px;
                font-size: 0.75rem;
            }

            .thapmuoi-breadcrumb li i {
                margin: 0 2px;
                font-size: 0.6rem;
            }

            .thapmuoi-breadcrumb li:last-child {
                padding: 3px 6px;
                font-size: 0.75rem;
            }
}
