/* static/css/components/marketplace-hero.css */

.mkt-hero {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: 370px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.mkt-hero__title {
    position: absolute;
    top: 117px;
    left: clamp(32px, 5.5vw, 80px);
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

/* Responsive: scale title on small screens */
@media (max-width: 640px) {
    .mkt-hero__title {
        font-size: clamp(32px, 8vw, 56px);
        top: clamp(60px, 15vw, 117px);
    }
}
