.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));;
    grid-gap: 10px;
}

.category-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #dee2e6;
    background-color: #0b8de7;
    padding: 15px 10px 15px 10px;
}

.category-grid-item:hover {
    -moz-box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.75);
    border: 1px solid #0c96f2;
    background-image: radial-gradient(ellipse farthest-corner at 50%, #0b8de7 10%, #1086d5);
    background-repeat: no-repeat;
    background-color: #0b8de7;
    color: #FFF;
    transition: .4s;
}

.category-grid-item img {
    width: 140px;
    height: 40px;
    object-fit: contain;
}

.category-name {
    margin: 0;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
