:root {
    --primary: #0e2b5c;
    --secondary: #ff6b35;
    --accent: #e05a2a;
    --light: #f8f9fa;
    --dark: #212529;
    --gold: #d4af37;
}

/* Hero Banner */
.small-hero {
    background: linear-gradient(rgba(14, 43, 92, 0.9), rgba(14, 43, 92, 0.9)),
                url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 150px;
    width: 100%;
    color: white;
    display: flex;
    align-items: center;
    /* Add padding for better spacing on mobile */
    padding: 0 15px;
}

.small-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
}

.small-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    /* Ensure the h1 doesn't wrap to the next line */
    white-space: nowrap;
}

.small-hero .text-left {
    text-align: left;
}

.small-hero .text-right {
    text-align: right;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    /* Ensure the breadcrumb doesn't wrap to the next line */
    white-space: nowrap;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
    content: ">";
}

/* Responsive adjustments for smaller screens */
@media (max-width: 991px) {
    /* Keep the default flexbox behavior to maintain left/right alignment */
    .small-hero-content {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .small-hero h1 {
        font-size: 2rem;
    }

    .small-hero .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .small-hero h1 {
        font-size: 1.5rem;
    }
}