/* ===== ELPE Kolečka — Frontend ===== */

.elpe-kolecka {
    padding: 60px 20px;
}

.elpe-kolecka__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.elpe-kolecka__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 1 180px;
    max-width: 220px;
    text-align: center;
}

.elpe-kolecka__circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.elpe-kolecka__circle:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.elpe-kolecka__circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.elpe-kolecka__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a2332;
    line-height: 1.3;
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .elpe-kolecka__inner {
        gap: 24px;
    }

    .elpe-kolecka__circle {
        width: 110px;
        height: 110px;
    }

    .elpe-kolecka__circle img {
        width: 48px;
        height: 48px;
    }
}
