.blog-breadcrumbs {
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1rem;
}

.blog-breadcrumbs li {
    font-size: 14px;
    line-height: 20px;
}

.blog-breadcrumbs a {
    color: #798187;
    transition: 0.3s ease;
}

.blog-breadcrumbs a:hover {
    color: #236192;
}

.blog-breadcrumbs .separator {
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12L10 8L6 4" stroke="%23798187" stroke-width="1.5" stroke-linecap="square" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-position: center;
}

.blog-breadcrumbs li.current-page {
    font-weight: 600;
    color: #236192;
}

#blog-body-gradient-bg {
    background: #236192;
    background: linear-gradient(180deg, rgba(35, 97, 146, 1) 0%, rgba(35, 97, 146, 1) 25%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 100%);
}

.related-blogs-cta {
    text-transform: uppercase;
    border-bottom: 1px solid #1f618e;
}