.breadcrumb-section {
    padding: 15px 0;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list a {
    color: var(--theme-red);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--theme-light-red);
}

.breadcrumb-list .sep {
    color: var(--theme-light-gray);
    font-weight: 300;
}

.breadcrumb-list li.active {
    color: var(--theme-lr-gray);
    font-weight: 600;
}
.bread-hero {
    background-color: var(--theme-light);
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--theme-light);
}

.bread-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.bread-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.bread-title+.bread-subtitle {
    margin-top: 0.5rem;
}

@media (max-width: 1200px) {
    .bread-hero {
        padding: 0 1rem;
    }
}


@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 10px 0;
    }

    .breadcrumb-list {
        font-size: 13px;
        gap: 8px;
    }
    .bread-title {
        font-size: 1.8rem;
    }
}