.hero-wrap {
    position: relative;
    overflow: hidden;
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.hero-video,
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    object-fit: cover;
}

.hero-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    z-index: 1;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.5rem;
}

.breadcrumb a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ff9800;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.9rem;
        padding: 0.25rem;
        gap: 0.25rem;
    }

    .breadcrumb span {
        flex-basis: 100%;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.8rem;
    }

    .breadcrumb span {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-wrap {
        padding: 1.5rem;
    }
}
