/* =========================================================
   LAUSITZGLANZ – BUSINESS SERVICES
   Fahrzeugveredelung | Trockeneisreinigung
   ========================================================= */


/* =========================================================
   01 – GRUNDLAYOUT
   ========================================================= */

.business-services {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);

    width: 100%;

    box-sizing: border-box;

    background: transparent;

    overflow: hidden;
}


/* =========================================================
   02 – SPALTEN
   ========================================================= */

.business-services__column {
    position: relative;

    min-width: 0;

    box-sizing: border-box;

    padding:
        35px
        clamp(35px, 4vw, 65px)
        55px;
}


/* =========================================================
   03 – MITTLERE TRENNLINIE
   ========================================================= */

.business-services__divider {
    position: relative;

    width: 1px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        rgba(190, 210, 225, 0.35) 0%,
        rgba(0, 142, 240, 0.55) 25%,
        rgba(0, 142, 240, 0.65) 50%,
        rgba(0, 142, 240, 0.55) 75%,
        rgba(190, 210, 225, 0.20) 100%
    );
}


/* =========================================================
   04 – EINZELNER SERVICE
   ========================================================= */

.service-item {
    position: relative;

    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);

    align-items: center;

    min-height: 92px;

    box-sizing: border-box;

    padding: 10px 0 11px;
}


/* =========================================================
   05 – TRENNLINIE ZWISCHEN DEN SERVICES
   ========================================================= */

.service-item:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 94px;
    right: 0;
    bottom: 0;

    height: 1px;

    background: linear-gradient(
        to right,
        rgba(0, 142, 240, 0.55) 0%,
        rgba(0, 142, 240, 0.28) 58%,
        rgba(0, 142, 240, 0) 100%
    );

    box-shadow:
        0 0 8px rgba(0, 142, 240, 0.12);
}


/* =========================================================
   06 – ICON
   Fertige Icon-Grafiken
   ========================================================= */

.business-services .service-item__icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    min-width: 64px;

    padding: 0;
    margin: 0;

    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;

    overflow: hidden;
}


.business-services .service-item__icon img {
    display: block !important;

    width: 64px !important;
    height: 64px !important;

    max-width: 64px !important;
    max-height: 64px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;

    transform: none !important;
}

/* =========================================================
   07 – TEXTBEREICH
   ========================================================= */

.service-item__content {
    min-width: 0;

    box-sizing: border-box;

    padding-left: 18px;
}


.service-item__content h3 {
    margin: 0;

    font-family: "Lausitz Sans", sans-serif;

    font-size: clamp(18px, 1.45vw, 24px);
    font-weight: 600;
    line-height: 1.15;

    letter-spacing: 0.015em;

    color: #f4f6f8;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.85);
}


.service-item__content p {
    margin: 6px 0 0;

    font-family: "Lausitz Sans", sans-serif;

    font-size: clamp(14px, 1.05vw, 17px);
    font-weight: 400;
    line-height: 1.35;

    letter-spacing: 0.015em;

    color: rgba(225, 234, 241, 0.82);
}


/* =========================================================
   08 – SEHR DEZENTER LICHTAKZENT
   ========================================================= */

.business-services__column::before {
    content: "";

    position: absolute;
    z-index: 0;

    width: 520px;
    height: 360px;

    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            rgba(0, 142, 240, 0.07) 0%,
            rgba(0, 142, 240, 0.025) 40%,
            rgba(0, 142, 240, 0) 72%
        );
}


.business-services__column--vehicle::before {
    left: -180px;
    bottom: -100px;
}


.business-services__column--dryice::before {
    right: -180px;
    top: 80px;
}


.service-item {
    z-index: 1;
}


/* =========================================================
   09 – TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .business-services__column {
        padding:
            30px
            clamp(25px, 3vw, 45px)
            50px;
    }


    .service-item {
        grid-template-columns: 68px minmax(0, 1fr);

        min-height: 86px;
    }


    .service-item__icon {
        width: 56px;
        height: 56px;
    }


    .service-item__icon img {
        width: 34px;
        height: 34px;
    }


    .service-item__content {
        padding-left: 15px;
    }


    .service-item:not(:last-child)::after {
        left: 83px;
    }
}


/* =========================================================
   10 – MOBILE
   Beide Geschäftsbereiche untereinander
   ========================================================= */

@media (max-width: 900px) {

    .business-services {
        grid-template-columns: 1fr;
    }


    .business-services__divider {
        width: 100%;
        height: 1px;

        background: linear-gradient(
            to right,
            transparent 0%,
            rgba(0, 142, 240, 0.65) 50%,
            transparent 100%
        );
    }


    .business-services__column {
        padding:
            35px
            clamp(25px, 7vw, 55px)
            45px;
    }


    .service-item {
        grid-template-columns: 70px minmax(0, 1fr);

        min-height: 88px;
    }


    .service-item__icon {
        width: 58px;
        height: 58px;
    }


    .service-item__icon img {
        width: 35px;
        height: 35px;
    }


    .service-item:not(:last-child)::after {
        left: 86px;
    }


    .service-item__content h3 {
        font-size: clamp(18px, 4vw, 23px);
    }


    .service-item__content p {
        font-size: clamp(14px, 3vw, 17px);
    }
}


/* =========================================================
   11 – KLEINE SMARTPHONES
   ========================================================= */

@media (max-width: 560px) {

    .business-services__column {
        padding:
            28px
            20px
            38px;
    }


    .service-item {
        grid-template-columns: 58px minmax(0, 1fr);

        min-height: 78px;

        padding: 9px 0;
    }


    .service-item__icon {
        width: 48px;
        height: 48px;
    }


    .service-item__icon img {
        width: 29px;
        height: 29px;
    }


    .service-item__content {
        padding-left: 12px;
    }


    .service-item__content h3 {
        font-size: clamp(16px, 4.6vw, 20px);

        line-height: 1.18;
    }


    .service-item__content p {
        margin-top: 4px;

        font-size: clamp(12px, 3.6vw, 15px);

        line-height: 1.35;
    }


    .service-item:not(:last-child)::after {
        left: 70px;
    }

}

.business-services,
.business-services__column,
.business-services__column::before {
    background: transparent !important;
    background-image: none !important;
}