
/* Banner Widget Styles */
.xtrain-banner-widget {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.xtrain-banner-inner {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xtrain-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.xtrain-banner-title {
    position: relative;
    z-index: 2;
    margin: 0;
    text-align: center;
    font-weight: 700;
    font-size: 48px; /* Adjustable via typography settings if needed later */
    font-family: 'Cairo', sans-serif;
    text-transform: uppercase;
}

/* Breadcumb Wrapper */
.xtrain-breadcrumb-wrapper {
    background-color: #f9f9f9; /* Light grey background for breadcrumb bar */
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.xtrain-breadcrumb {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.xtrain-breadcrumb a {
    text-decoration: none;
    transition: color 0.3s;
}

.xtrain-breadcrumb a:hover {
    opacity: 0.7;
}

.xtrain-breadcrumb .separator {
    margin: 0 5px;
    opacity: 0.6;
}
