.top-banner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 625px;
    overflow: hidden;
}

.top-banner__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
}

.top-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-banner__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    color: #fff;
}

.top-banner__subtitle {
    margin: 0;
}

.top-banner__title {
    margin: 0;
    text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb {
    font-weight: 400;
    line-height: 37px;
    color: #3D3D3D;
}

.breadcrumb__link {
    color: #3D3D3D;
    text-decoration: none;
}

.breadcrumb__link:hover {
    color: #166592;
}

.breadcrumb__sep {
    margin: 0 10px;
    color: #3D3D3D;
}

.breadcrumb__current {
    color: #3D3D3D;
}

/* Desktop/Tablet: show desktop breadcrumb, hide mobile */
.breadcrumb--desktop {
    text-align: left;
    position: relative;
    z-index: 1;
    height: 0;
    overflow: visible;
    top: 20px;
}

.breadcrumb--mobile {
    display: none;
}

/* Tablet */
@media (max-width: 1280px) {
    .top-banner {
        min-height: 323px;
    }

    .top-banner__content {
        gap: 5px;
    }

    .top-banner__subtitle {
        font-size: 29px;
        line-height: 36px;
    }

    .top-banner__title {
        font-size: 56px;
        line-height: 64px;
        text-shadow: 0 0 30px black;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-banner {
        flex-direction: column;
        min-height: auto;
    }

    .top-banner__image {
        position: relative;
        height: 161px;
    }

    .top-banner__content {
        position: relative;
        align-items: center;
        text-align: center;
        gap: 0;
        padding-top: 50px;
        padding-bottom: 80px;
        background-color: #F8F8F8;
        color: #242424;
    }

    .top-banner__subtitle {
        font-size: 29px;
        line-height: 36px;
    }

    .top-banner__title {
        font-size: 50px;
        line-height: 62px;
        text-shadow: none;
    }

    .breadcrumb--desktop {
        display: none;
    }

    .breadcrumb--mobile {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}
