.work-hours-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Two grid items per row */
    gap: 10px; /* Adjust as needed */
}

.work-hours-item {
    display: grid;
	grid-template-columns: 40% 60%;
    /*grid-template-columns: repeat(2, 1fr); *//* Two grid items per row */
    gap: 5px; /* Adjust as needed */
}


.work-hours {

}
.work-days
 {

}









/* WRAPPER */
.ablauf-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* IMMER 2 auf Desktop */
    gap: 40px;
    margin: 60px 0;
}

/* Mobile = 1 Spalte */
@media (max-width: 768px) {
    .ablauf-wrapper {
        grid-template-columns: 1fr;
    }
}

/* STEP CARD */
.ablauf-step {
    position: relative;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 0px; /* Ecken 0 */
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
    cursor: pointer;
	min-height:280px;
}

/* Hover Effekt */
.ablauf-step:hover {
    background: #161E32;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Nummer */
.ablauf-number {
    font-size: 80px;
    font-weight: 700;
    color: #f0f0f0;
    position: absolute;
    top: 25px;
    right: 35px;
    z-index: 0;
    transition: all 0.4s ease;
}

/* Headline */
.ablauf-step h3 {
    position: relative;
    z-index: 1;
    font-size: 22px;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

/* Text */
.ablauf-step p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    transition: color 0.4s ease;
}

/* Hover Text Weiß */
.ablauf-step:hover h3,
.ablauf-step:hover p {
    color: #ffffff;
}

/* Nummer bei Hover */
.ablauf-step:hover .ablauf-number {
    color: rgba(255,255,255,0.08);
}

/* Animation sichtbar */
.ablauf-step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}