.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1800px;
    margin: 0 auto;
}

/* Wrapper optional – falls nicht benötigt, entfernen */
.benefit-wrapper {
    width: 70%;
    max-width: 70% !important;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
}

.benefit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.benefit-image {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: width 0.3s, height 0.3s;
}

.benefit-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0.4rem 0;
    color: #222;
    transition: font-size 0.3s;
}

.benefit-description {
    font-size: 1rem;
    color: #555;
    max-width: 240px;
    transition: font-size 0.3s;
}

/* ========== Tablet: max 1024px ========== */
@media (max-width: 1024px) {
    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .benefit-image {
        width: 200px;
        height: 200px;
    }
    .benefit-title {
        font-size: 1.2rem;
    }
    .benefit-description {
        font-size: 0.95rem;
    }
}

/* ========== Tablet: max 1366px ========== */
@media (max-width: 1366px) {
    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
		gap:1.5rem;
		
    }
    .benefit-image {
        width: 200px;
        height: 200px;
    }
    .benefit-title {
        font-size: 1.2rem;
    }
    .benefit-description {
        font-size: 0.95rem;
    }
	.benefit-wrapper {
    	width: 80%;
    	max-width: 80% !important;
	}
}

/* ========== Handy: max 768px ========== */
@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-image {
        width: 160px;
        height: 160px;
    }
    .benefit-title {
        font-size: 1.1rem;
    }
    .benefit-description {
        font-size: 0.9rem;
    }
}

/* ========== Sehr kleine Geräte: max 480px ========== */
@media (max-width: 480px) {
    .benefit-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .benefit-image {
        width: 140px;
        height: 140px;
    }
    .benefit-title {
        font-size: 1rem;
    }
    .benefit-description {
        font-size: 0.85rem;
    }
}
