

/* Leistungen split layout */
.service-list {
    display: grid;
    gap: .75rem;
}

.service-tile {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1rem;
    border: 1px solid #e6eef7;
    border-radius: .85rem;
    background: #fff;
    cursor: pointer;
    transition: .18s;
}

    .service-tile i {
        font-size: 1.2rem;
        color: var(--brand); /* statt background-clip text */
    }

    .service-tile.active i {
        color: var(--brand-dark);
    }

    .service-tile:hover {
        transform: translateX(2px);
        box-shadow: 0 10px 20px rgba(0,0,0,.06);
    }

    .service-tile.active {
        border-color: rgba(19,137,255,.4);
        box-shadow: 0 8px 18px rgba(19,137,255,.12);
    }

#leistung-detail img {
    max-width: 100%;
    height: auto;
    border-radius: .5rem;
}

/* Startseiten-Leistungen (Teaser) */
.services-teaser .st-card {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border: 1px solid #e6eef7;
    border-radius: 1rem;
    background: #fff;
    text-decoration: none;
    transition: .2s ease;
    height: 100%;
}

    .services-teaser .st-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0,0,0,.08);
        border-color: rgba(19,137,255,.35);
    }

.services-teaser .st-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: .6rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    flex: 0 0 auto;
}

    .services-teaser .st-icon i {
        font-size: 1.15rem;
    }

.services-teaser .st-title {
    font-weight: 700;
    color: #1263e2;
    font-size: 1.15rem;
    line-height: 1.2;
}

.services-teaser .st-sub {
    color: #586a7a;
    font-size: .95rem;
    margin-top: .15rem;
}

/* Startseiten-Leistungen (Teaser) */
.services-teaser .st-card {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border: 1px solid #e6eef7;
    border-radius: 1rem;
    background: #fff;
    text-decoration: none;
    transition: .2s ease;
    height: 100%;
}

    .services-teaser .st-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0,0,0,.08);
        border-color: rgba(19,137,255,.35);
    }

.services-teaser .st-icon {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: .6rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
}

    .services-teaser .st-icon i {
        font-size: 1.2rem;
        line-height: 1;
    }

.services-teaser .st-svg {
    width: 1.3rem;
    height: 1.3rem;
    color: #fff;
}

.services-teaser .st-title {
    font-weight: 700;
    color: #1263e2;
    font-size: 1.15rem;
    line-height: 1.2;
}

.services-teaser .st-sub {
    color: #586a7a;
    font-size: .95rem;
    margin-top: .15rem;
}
