/* ==========================================================
   Home Banner
========================================================== */

.vtw-home-banner{
    width:100%;
    overflow:hidden;
    margin:0 0 40px;
}

.vtw-home-banner img{
    display:block;
    width:100%;
    height:auto;
}
/**
 * ==========================================================
 * V.and The Wolf
 * Home Categories
 * ==========================================================
 */

.vtw-home-categories{
    padding:60px 0;
}

.vtw-section-title{
    text-align:center;
    font-size:2rem;
    margin-bottom:45px;
}

.vtw-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.vtw-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:.3s ease;
}

.vtw-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.vtw-card a{
    display:block;
    color:inherit;
    text-decoration:none;
    height:100%;
}

.vtw-card-image{
    height:280px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f7f7f7;
}

.vtw-card-image img{
    max-width:85%;
    max-height:240px;
    width:auto;
    height:auto;
    display:block;
}

.vtw-card h3{
    margin:25px 25px 15px;
    text-align:center;
    font-size:1.4rem;
}

.vtw-card p{
    margin:0 25px 25px;
    text-align:center;
    line-height:1.6;
    color:#666;
}

.vtw-button{
    display:block;
    margin:0 25px 30px;
    text-align:center;
    font-weight:600;
}

@media (max-width:849px){

    .vtw-grid{
        grid-template-columns:1fr;
    }

    .vtw-card-image{
        height:220px;
    }

}