/* Hero Banner */
.hero-banner-container {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
    margin-bottom: 1.75rem;
}

.hero-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: clamp(3.25rem, 8vw, 6.25rem) 1.5rem;
    display: flex;
    height: 25rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 767px) {
    .hero-banner {
        height: 18rem;
    }
}

.hero-banner-market {
    background-image: /* linear-gradient(120deg, rgba(17, 24, 39, 0.6), rgba(1, 170, 73, 0.38)), */ linear-gradient(120deg, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.6)),
    url("../images/banner.jpg")
    /* url("https://images.unsplash.com/photo-1542838132-92c53300491e?q=80&w=2487&auto=format&fit=crop"); */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 44rem;
}

.hero-title {
    font-size: clamp(1.85rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.93);
    margin-bottom: 0;
}
