/* Abschnitt-Wrapper */
.wessel-services {
    display: flex;
    justify-content: center;
    padding: 72px 0;
    background: #ffffff;
}

.wessel-services__inner {
    max-width: 1200px;
}

/* Grid: 2x2 auf Desktop */
.wessel-services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

/* Kachel-Basis */
.wessel-service {
    position: relative;
    display: block;
    padding: 32px 40px;
    border-radius: 24px;
    background: #001945;          /* dunkles Blau */
    color: #bfd635;               /* Akzent-Grün */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: background-color 0.25s ease, color 0.25s ease,
                transform 0.2s ease, box-shadow 0.2s ease;
}

/* Wenn verlinkt: als Link stylen, aber wie Block aussehen */
.wessel-service--link {
    text-decoration: none;
    color: inherit;
}

/* Hover: alle Kacheln werden hellgrün */
.wessel-service:hover {
    background: #bfd635;   /* hellgrün */
    color: #001945;        /* Text wird dunkelblau */
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* Icon oben links */
.wessel-service__icon {
    margin-bottom: 18px;
}

.wessel-service__icon img {
    display: block;
    width: 40px;
    height: auto;
}

/* Titel */
.wessel-service__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 8px;
}

/* Beschreibung */
.wessel-service__desc {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}

/* Responsive: 1 Spalte auf small screens */
@media (max-width: 900px) {
    .wessel-services__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wessel-service {
        padding: 24px 28px;
    }
}
