.mi-indexing-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr); /* ⭐ ONLY 2 PER LINE */
    gap:22px;
    margin:25px 0;
}

/* ===== BIG CARD STYLE ===== */
.mi-card{
    background:#ffffff;
    border:1px solid #e1e1e1;

    padding:28px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
    text-decoration:none;

    min-height:180px;  /* ⭐ bigger cards */

    border-radius:0;

    box-shadow:0 3px 10px rgba(0,0,0,0.08);

    transition:0.35s ease;

    position:relative;
    overflow:hidden;
}

/* IMAGE (bigger & clean) */
.mi-card img{
    width:100%;
    max-width:220px;
    height:75px;
    object-fit:contain;
    margin-bottom:14px;
    transition:0.3s ease;
}

/* TEXT */
.mi-card span{
    font-size:14px;
    font-weight:700;
    color:#222;
    letter-spacing:0.8px;
}

/* HOVER EFFECT */
.mi-card:hover{
    transform:translateY(-7px);
    box-shadow:0 12px 28px rgba(0,0,0,0.18);
    border-color:#999;
}

.mi-card:hover img{
    transform:scale(1.05);
}

/* shine animation */
.mi-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.35),transparent);
    transition:0.6s;
}

.mi-card:hover::before{
    left:100%;
}

/* RESPONSIVE */
@media(max-width:768px){
    .mi-indexing-grid{
        grid-template-columns:1fr; /* mobile full width */
    }
}