/**
 * Path: nplsportspro/assets/css/frontend/breadcrumbs.css
 * Extra Pro Card-based Structure
 */

.nplsp-breadcrumb-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03) !important;
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    font-size: 13px !important;
    color: #64748b !important;
    font-weight: 600 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Links & Hover Effects */
.nplsp-breadcrumb-card a {
    color: #3b82f6 !important; /* Professional App Blue */
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
    display: inline-block !important;
}

.nplsp-breadcrumb-card a:hover {
    color: #ef4444 !important; /* Accent Red */
    text-decoration: none !important;
    transform: translateY(-1px) !important;
}

/* Breadcrumb Separator */
.nplsp-breadcrumb-separator {
    margin: 0 10px !important;
    color: #cbd5e1 !important;
    font-weight: 900 !important;
    font-size: 14px !important;
}

/* Specific Labels (Taxonomy/CPT) */
.nplsp-tax-label {
    color: #94a3b8 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: #f8fafc !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    border: 1px solid #e2e8f0 !important;
}

/* Current Page Text */
.nplsp-breadcrumb-current {
    color: #1e293b !important;
    font-weight: 800 !important;
}

/* --- 7 DEVICE RESPONSIVENESS (Rule 6) --- */

/* 1. 4K Monitors */
@media (min-width: 2560px) { .nplsp-breadcrumb-card { font-size: 16px !important; padding: 20px 30px !important; } }

/* 2. Laptop/Desktop */
@media (max-width: 1440px) { .nplsp-breadcrumb-card { font-size: 13px !important; } }

/* 3. Tablet Landscape */
@media (max-width: 1024px) { .nplsp-breadcrumb-card { padding: 10px 15px !important; } }

/* 4. Tablet Portrait */
@media (max-width: 768px) { .nplsp-breadcrumb-card { margin-bottom: 20px !important; border-radius: 6px !important; } }

/* 5. Mobile Large */
@media (max-width: 480px) { 
    .nplsp-breadcrumb-card { 
        white-space: nowrap !important; 
        overflow-x: auto !important; /* Enable Touch Swipe */
        display: block !important; 
        padding: 10px 12px !important;
    }
    .nplsp-breadcrumb-card::-webkit-scrollbar { display: none !important; }
}

/* 6. Mobile Medium */
@media (max-width: 375px) { .nplsp-breadcrumb-card { font-size: 12px !important; } }

/* 7. Mobile Small */
@media (max-width: 320px) { .nplsp-breadcrumb-card { font-size: 11px !important; padding: 8px 10px !important; } }