.lmc-page {
    background: var(--lm-bg);
    overflow: hidden;
}

.lmc-page .lm-wrap {
    width: min(var(--lm-max), calc(100% - 48px));
    margin-inline: auto;
}

/* Hero */

.lmc-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    overflow: hidden;
    background-color: #07070a;
	padding-bottom: 40px;
}

.lmc-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.42) 45%,
            rgba(0,0,0,.76) 100%
        ),
        url('https://www.lovemeets.at/wp-content/uploads/2026/05/BG.jpg');

    background-position: center;
    background-size: cover;

    opacity: .92;
}

.lmc-hero-inner {
    position: relative;
    z-index: 2;

    padding-top: 250px;
    padding-bottom: 90px;
}

.lmc-hero-content {
    max-width: 820px;
}

.lmc-hero h1 {
    margin: 0 0 8px;

    font-family: var(--lm-head);
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1;

    text-transform: uppercase;
}

.lmc-script {
    display: block;

    margin: 0 0 34px;

    color: var(--lm-accent);

    font-family: var(--lm-script);
    font-size: clamp(44px, 4.6vw, 68px);
    line-height: 1;

    text-shadow: 0 0 28px rgba(154,92,255,.45);
}

.lmc-hero-text {
    max-width: 660px;

    margin: 0;

    color: #d2cad8;

    font-size: 17px;
    line-height: 1.75;
}

/* Mobile */

@media (max-width: 760px) {

    .lmc-hero-inner {
        padding-top: 180px;
        padding-bottom: 70px;
    }

}


.lmc-community-intro {
    position: relative;
    z-index: 6;

    margin-top: -80px;
    margin-bottom: 26px;
}

.lmc-community-intro-content {
    max-width: 860px;
}

.lmc-community-intro h2 {
    margin: 0 0 16px;

    font-family: var(--lm-head);
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1;

    text-transform: uppercase;
}

.lmc-community-intro p {
    max-width: 720px;

    margin: 0;

    color: #d2cad8;

    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 760px) {

    .lmc-community-intro {
        margin-top: -40px;
    }

}

.lmc-community-section-head {
    position: relative;
    z-index: 6;

    display: flex;
    align-items: center;
    gap: 22px;

    margin-bottom: 34px;
	padding-top: 40px;
}

.lmc-community-section-head h2 {
    margin: 0;

    font-family: var(--lm-head);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: .08em;
    white-space: nowrap;
    text-transform: uppercase;
}

.lmc-community-section-head::after {
    content: "";

    flex: 1;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(154,92,255,.55),
            rgba(154,92,255,.08)
        );
}

@media (max-width: 760px) {

    .lmc-community-section-head {
        margin-top: -40px;
    }

    .lmc-community-section-head::after {
        display: none;
    }

}