/* ===== SIATKA IKON ===== */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;                 /* mniejsze – brak „rozstrzału” */
    margin-top: 25px;
}

/* ===== KAFEL ===== */

.icon-box {
    background: #f5f5f5;       /* OPCJA B */
    border-radius: 18px;
    height: 120px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* ===== HOVER ===== */

.icon-box:hover {
    background: #eeeeee;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* ===== LOGO ===== */

.icon-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;   /* KLUCZ: brak obcinania */
    display: block;
    pointer-events: none;
}

/* ===== RESPONSYWNOŚĆ ===== */

@media (max-width: 900px) {
    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}