.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
 {

}

















.zen-process-wrapper {
    text-align: center;
    padding: 10px 10px;
    border-radius: 20px;
}

.zen-process-title {
    font-size: 36px;
    color: #3f3a34; /* warm grey */
    margin-bottom: 10px;
    font-weight: 600;
}

.zen-process-subtitle {
    font-size: 18px;
    color: #7d776f;
    margin-bottom: 40px;
}

.zen-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.zen-process-card {
    position: relative;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    text-align: left;
}

/* Top-right label */
.zen-step-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Dynamic colors for Vorteil numbers */
.zen-step-tag.zen-1 { background: #f3c993; } /* sage green */
.zen-step-tag.zen-2 { background: #F3C993; } /* warm sand */
.zen-step-tag.zen-3 { background: #F3C993; } /* beige gold */
.zen-step-tag.zen-4 { background: #F3C993; } /* stone grey */

/* For Vorteil 5+ repeat or choose your own colors */
.zen-step-tag.zen-5 { background: #efb256; }
.zen-step-tag.zen-6 { background: #efb256; }

.zen-process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #423f39;
	margin-top:20px;
}

.zen-process-card p {
    color: #6f6a63;
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .zen-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .zen-process-grid {
        grid-template-columns: 1fr;
    }
}


.vorteil-icon {
    width: 28px;
    height: 28px;
    display: block;
}