


#department .icons span{
    display: block; 
    font-weight:bold; 
    text-transform: uppercase; 
    background:#eee;
    transition: background-color 0.2s ease, color 0.2s ease;
}

@media (min-width: 768px) {
#department .icons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;  
    margin-top: 20px;
    margin:0
}
}
#department .icons a {
    display: block;
    background: #fff;
    border: 10px solid #eee;
    border-radius: 0.5em;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease;
    position:relative
}



#department .icons a:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);  
    border-color: #1a2b4c; 
}

#department .icons a:hover span {
    background-color: #1a2b4c; 
    color: #fff;
}