.drei-boxen-widget {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.drei-boxen-widget .box-item {
    flex: 1 1 calc(33.333% - 15px);
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.2s ease;
    min-width: 250px;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .drei-boxen-widget {
        gap: 15px;
    }
    
    .drei-boxen-widget .box-item {
        flex: 1 1 100%;
        min-width: unset;
    }
}

.drei-boxen-widget .box-item:hover {
    transform: translateY(-5px);
}

.drei-boxen-widget .box-icon {
    margin-bottom: 10px;
    font-size: 30px;
}

.drei-boxen-widget .box-title {
    margin-bottom: 10px;
    font-weight: bold;
    color: #1e3a5f;
    font-size: 24px;
}

.drei-boxen-widget .box-content {
    font-size: 15px;
    color: #444;
}
