.custom-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;

    a {
        display: flex;
        align-items: center;
    }

    span {
        color: #FFF;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        white-space: normal;
        word-wrap: break-word;
        height: auto;
    }
}

.custom-breadcrumb.single {
    span {
        color: #282C37;
    }
}

@media (max-width:766px) {
    .custom-breadcrumb span {
        font-size: 12px;
        line-height: 16px;
    }
    
    .custom-breadcrumb  {
        gap: 4px;
    }

    img {
        width: 14px;
        height: 14px;
        object-fit: contain;
        margin-bottom: 0;
    }
}

@media (min-width:767px) {
    .custom-breadcrumb  {
        gap: 8px;
    }

    img {
        width: 16px;
        height: 16px;
        object-fit: contain;
    }
}