.category-hero{
    background: linear-gradient(90deg, rgba(182, 53, 53, 0.48) 41.67%, rgba(173, 49, 49, 0.00) 100%);
}

.category-hero h1{
    font-size: 60px;
    color: #fff;
    margin: 50px;
}

.img-showcase{
    margin-top: 100px;
}

.img-container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.img-container a{
    display: inline-flex;
    text-decoration: none;
}

.img-container .img-box{
    height: 330px;
    width: 220px;
    border-radius: 20px;
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: flex-end;
}

.img-container .img-box h3{
    margin: 20px;
    font-size: 22px;
    padding: 0;
    color: #fff;
}

.img-container .img-box img{
    position: absolute;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}
.img-container .img-box .bottom-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #000f, #0000);
    z-index: -1;
}

.img-showcase .see-more-btn{
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.img-showcase .see-more-btn::after{
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    width: 0%;
    margin-top: 10px;
    background: #000;
    transition: 0.3s ease;
}

.img-showcase .see-more-btn:hover::after{
    width: 100%;
}

.no-artwork{
    text-align: center;
}

@media(max-width: 820px){
    .img-container a{
        width: calc(50% - 20px);
    }
}