/* EXPO HOME (page-specific) */

.dmj-hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap: 10px;
    padding-top: 26px;
    padding-bottom: 26px;
}

.dmj-hero-logo{ display:flex; justify-content:center; width:100%; }

.dmj-hero-logo-img{
    width: min(260px, 60vw);
    height: auto;
    display:block;
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

.dmj-hero-title{
    margin: 4px 0 0 0;
    font-size: clamp(22px, 4.8vw, 38px);
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.1;
    color: var(--dmj-gold, #c9a24a);
    text-transform: uppercase;
}

.dmj-hero-subtitle{
    margin: 0;
    max-width: 720px;
    color: var(--dmj-muted);
    font-size: 13px;
    line-height: 1.55;
}

.dmj-hero-form{
    width: 100%;
    max-width: 720px;
    display:flex;
    gap: 10px;
    align-items:center;
    justify-content:center;
    margin-top: 8px;
}

.dmj-hero-input{
    flex: 1 1 auto;
    min-width: 200px;
}

.dmj-hero-btn{
    flex: 0 0 auto;
    white-space: nowrap;
}

.dmj-hero-quick{
    margin-top: 6px;
    font-size: 12px;
    color: var(--dmj-muted);
}
.dmj-hero-quick-link{
    color: var(--dmj-text);
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 640px){
    .dmj-hero-form{
        flex-direction: column;
        align-items: stretch;
    }
    .dmj-hero-btn{ width:100%; }
}
