.mijn-makelaar-voorraad { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 25px; 
    justify-content: center; 
}
.mijn-makelaar-object { 
    border: 2px solid #0a1f4d; 
    border-radius: 10px; 
    overflow: hidden; 
    width: 300px; 
    background: #fff; 
    text-decoration: none; 
    color: inherit; 
    transition: transform 0.3s, box-shadow 0.3s; 
    display: flex; 
    flex-direction: column;
}
.mijn-makelaar-object:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 25px rgba(0,0,0,0.25); 
}
.mijn-makelaar-object img { 
    width: 100%; 
    height: auto; 
    display: block; 
}
.mijn-makelaar-object-content { 
    padding: 15px; 
    display: flex; 
    flex-direction: column; 
    gap: 5px; 
    transition: color 0.3s;
}
.mijn-makelaar-object:hover .mijn-makelaar-object-content * { 
    color: #00395B !important; /* fel geel op hover */ 
}
