
.categories-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
   
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card__content {
   
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    
   
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-card__title-link {
    position:absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
font-size: 35px;
font-weight: 700;
transition: background-color 0.3s ease;
 background-color: rgba(0, 164, 255, 0.4);
&:hover {

  background-color: transparent; 
}
 
}



















