.woo-cat-grid{
    display: flex;
    gap: 25px;
}

.woo-cat-item{
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-decoration: none;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.woo-cat-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.woo-cat-title{
    color: #fff;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-family: "EB Garamond", serif;
    z-index:1;
}


@media screen and (max-width: 768px) {
    
    .woo-cat-grid{
        display:block;
    }
    
    .woo-cat-item {
        height: 300px; 
        flex: none; 
        margin-bottom: 20px;
        align-items: center;
    }
}