.list-item {
    list-style: none;
  transition: all .3s ease;
  position: relative;
    cursor: pointer;
    border-radius: 30px;
    overflow: hidden;
}
.banner{
    width: 100%;
    transition: all .5s ease;
    position: relative;
}
.banner img{
    height: 100%;
    width: 100%;
}
.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    pointer-events: none;
    background: rgba(var(--theme),0.2);
    z-index: 2;
}
.list-item:hover .banner{
    transform: scale(1.03);
}
.list-item:hover .info{
    background: rgba(var(--theme),0.15);
}
html[data-theme="dark"] .banner::before{
  background: rgba(0,0,0,0.2);
}

.list-item a{
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
}
.info{
    width: 100%;
    padding: 20px;
    background: rgba(var(--theme),0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 3px;
    transition: all .3s ease;
}
.info h3{
    font-size: clamp(14px ,2vw, 18px);
    font-weight: 900;
}
.info p {
    font-size:clamp(9px ,1vw, 12px);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.info .img{
    width: 40px !important;
    height: 40px !important;
    min-width: 30px;
    min-height: 30px;
    flex: 0 0 40px;
    background: rgba(255,255,255,.7);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.info img{
    width: 80%;
    height: 80%;

}

@media (max-width: 768px) {
.info .img{
    width: 25px!important;
    height: 25px!important;
}
}