.breadcrumbs {
    font-size: 14px;
    margin: 15px 0;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a,
.breadcrumbs .active {
    position: relative;
    color: #333; 
    text-decoration: none;
    white-space: nowrap;
}

.breadcrumbs a:hover {
    color: #2ecc71;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 10px;
    color: #9aa6b2;
    font-size: 16px;
    font-weight: 600;
}

.breadcrumbs .active {
    color: #00c853;
}

@media (max-width: 768px) {
    .breadcrumbs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
		margin: 10px 0;
    }

    .breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    .breadcrumbs ol {
        width: max-content;
        flex-wrap: nowrap;
    }

    .breadcrumbs a,
    .breadcrumbs .active {
        white-space: nowrap;
    }
}