/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 23 2025 | 12:21:26 */
.breadcrumbs {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.breadcrumbs a {
    color: #0073aa;
    text-decoration: none;
    pointer-events: auto;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}
/* Responsive Adjustments */
@media (max-width: 1024px) {
    .breadcrumbs {
        font-size: 16px; /* slightly smaller on tablets */
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 14px; /* smaller font on mobile */
        display: flex;
        flex-wrap: wrap; /* allow wrapping to multiple lines */
    }
    
    .breadcrumbs a,
    .breadcrumbs span {
        display: inline-block;
        margin-right: 5px; /* small spacing */
    }
    
    .breadcrumbs a::after {
        content: "»"; /* separator */
        margin-left: 5px;
    }
    
    .breadcrumbs span::after {
        content: "";
    }
}