/* =========================================
   DIGITALE GÄSTEMAPPE
========================================= */
.guestmap-section {
    padding: 70px 0;
}

/* =========================================
   TEXTBEREICH
========================================= */
.guestmap-copy {
    max-width: 500px;
}

.guestmap-kicker {
    display: block;
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guestmap-copy h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 3.6vw, 50px);
    line-height: 1.05;
    font-weight: 700;
}

.guestmap-copy p {
    margin: 0 0 18px;

    font-size: 16px;
    line-height: 1.55;
}


/* =========================================
   VORTEILE
========================================= */
.guestmap-benefits {
    margin: 22px 0;
    padding: 0;

    list-style: none;
}

.guestmap-benefits li {
    position: relative;

    margin-bottom: 9px;
    padding-left: 25px;

    font-size: 15px;
    line-height: 1.4;
}

.guestmap-benefits li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    font-weight: 700;
}

.guestmap-hint {
    margin-top: 20px;
    font-weight: 600;
}


/* =========================================
   DEMO-FENSTER
========================================= */
.guestmap-demo {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.26);
}


/* obere Browserleiste */
.guestmap-demo-bar {
    display: flex;
    align-items: center;
    gap: 5px;

    min-height: 28px;
    padding: 0 10px;

    background: #f3f3f3;
    border-bottom: 1px solid #dddddd;
}

.guestmap-demo-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #bbbbbb;
}

.guestmap-demo-title {
    margin-left: 5px;

    font-size: 10px;
    color: #666666;
}


/* =========================================
   IFRAME
========================================= */
.guestmap-demo-frame {
    position: relative;

    width: 100%;
    height: 590px;

    overflow: hidden;
    background: #ffffff;
}

.guestmap-demo-frame iframe {
    display: block;

    width: 100%;
    max-width: 100%;
    height: 100%;

    border: 0;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 991px) {

    .guestmap-section {
        padding: 60px 0;
    }

    .guestmap-copy {
        max-width: 650px;
        margin-bottom: 35px;
    }

    .guestmap-demo {
        max-width: 760px;
        margin: 0 auto;
    }

    .guestmap-demo-frame {
        height: 560px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .guestmap-section {
        padding: 45px 0;
    }

    .guestmap-copy {
        margin-bottom: 28px;
    }

    .guestmap-copy h2 {
        font-size: 34px;
    }

    .guestmap-copy p,
    .guestmap-benefits li {
        font-size: 15px;
    }

    .guestmap-demo {
        max-width: none;
        border-radius: 8px;
    }

    .guestmap-demo-bar {
        min-height: 34px;
        padding: 0 10px;
    }

    .guestmap-demo-title {
        font-size: 10px;
    }

    .guestmap-demo-frame {
        height: 520px;
    }
}