/* ─── lmdm/hero — style front-end ───────────────────────────────────────────── */

.lmdm-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    overflow: hidden;
    padding: 75px 5vw;
}

.lmdm-hero__overlay {
    position: absolute;
    inset: -1px;
    z-index: 1;
}

.lmdm-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.lmdm-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 2rem;
    color: var(--wp--preset--color--white);
}

.lmdm-hero__title {
    font-family: var(--wp--preset--font-family--heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.lmdm-hero__title--white.lmdm-hero__title {
    color: var(--wp--preset--color--white) !important;
}

.lmdm-hero__title--gold.lmdm-hero__title {
    color: var(--wp--preset--color--gold) !important;
}

h1.lmdm-hero__title {
    font-size: 3.15rem;
}

h2.lmdm-hero__title {
    font-size: 2.5rem;
}

.lmdm-hero__subheading {
    font-family: var(--wp--preset--font-family--body);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--wp--preset--color--white) !important;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .lmdm-hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .lmdm-hero__subheading {
        font-size: 1rem;
    }
}
