/* ===================================
   Page Components — Общие компоненты страниц
   =================================== */

/* Breadcrumb - Modern Style */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    font-size: 13px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    background: transparent;
    padding: 0;
    backdrop-filter: none;
}

nav.breadcrumb {
    background: transparent !important;
    padding: 0;
    border: none;
}

.breadcrumb-item {
    position: relative;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.breadcrumb-item a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.breadcrumb-separator {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    flex-shrink: 0;
    opacity: 0.4;
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 500;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-current::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    flex-shrink: 0;
}

.breadcrumb-current::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    flex-shrink: 0;
}
    50% {
        opacity: 0.7;
        transform: scale(0.9);
    }
}

/* Responsive */
@media (max-width: 640px) {
    .breadcrumb {
        gap: 6px;
        margin-bottom: 28px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }
    
    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
    
    .breadcrumb-item {
        flex-shrink: 0;
    }
    
    .breadcrumb-item a {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .breadcrumb-separator {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .breadcrumb-current {
        font-size: 13px;
        padding: 6px 14px;
        flex-shrink: 0;
    }
}

.section-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .section-title {
        font-size: 32px;
    }
}
