

.grid-item .image-wrapper img{
    max-width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    transition: .3s ease;
    width: 100%;

}
.image-wrapper{
    position: relative;
    overflow: hidden;
}
.custom-grid .grid-item{
    margin: 12px 0px;
    position: relative;
}
.image-wrapper:hover .desc-section{
    opacity: 0;
    transition: .3s ease;

}
.image-wrapper:hover img{
    transform: scale(1.1);
     transition: .2s ease;
}
 label.grid-label{
    position: absolute;
    left: 10px;
    border-radius: 2px;
    width: auto;
    padding: 5px 10px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    top: -5px;
    font-size: 12px;
    z-index: 1;
}
.custom-grid .grid-item:first-child label{
    background-color: var(--hibiscus);
}
.custom-grid .grid-item:nth-child(2) label{
    background-color: var(--lavendar);
}
.custom-grid .grid-item:nth-child(3) label{
    background-color: var(--lavendar);
}
.custom-grid .grid-item:last-child label{
    background-color: var(--hay);
}
.desc-section{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    right: 0;
    margin: auto auto;
    background: rgb(255 255 255 / 90%);
    padding: 15px 35px 15px 15px;
}
.desc-section h4{
    display: block;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    font-weight: normal;
    line-height: 24px;
    font-size: 16px;
    color: #000;
}
.desc-section h4 a{
    color: var(--primary-blue);
}