.sd-arac-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    max-width:1200px;
    margin:0 auto;
}
.sd-arac-card{
    background:#ffffff;
    border:2px solid var(--sd-border,#ff6600);
    border-radius:16px;
    width:140px;
    height:140px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:transform .2s ease;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}
.sd-arac-card:hover{ transform:translateY(-5px); }
.sd-arac-icon{
    background:var(--sd-accent,#ff6600);
    border-radius:50%;
    width:56px;height:56px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:10px;
}
.sd-arac-icon img{
    width:32px;height:32px;object-fit:contain;filter:invert(1);
	color:var(--sd-text,#ffff);

}
.sd-arac-title{
    font-size:15px;
    font-weight:600;
    text-align:center;
    color:var(--sd-text,#333);
}
@media(max-width:768px){
    .sd-arac-card{ width:30%; height:130px; }
}
@media(max-width:480px){
    .sd-arac-card{ width:45%; height:120px; }
}
