.hero-banner-link {
    display: block;
    text-decoration: none;
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 790px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-banner-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.25) 45%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.slide-content {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 5;
    color: #fff;
}

.slide-category {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content h2 {
    margin: 16px 0 10px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
}

.slide-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.slide-content i {
    margin-right: 6px;
}

@media (max-width: 760px) {
    .hero-banner {
        min-height: 460px;
    }

    .slide-content {
        left: 22px;
        right: 22px;
        bottom: 26px;
    }
}