.grid  {
    
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:5px
    
}
.card {
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    min-height:205px;
    border-radius:6px;
    background:linear-gradient(135deg,#b50808,#7e0808);
    padding:10px;gap:10px
    
}
.art {
    aspect-ratio:auto;
    height:100%;
    min-height:180px;
    border:3px solid #5e0505;
    border-radius:6px;
    align-self:stretch
    
}
.art img {
    border-radius:3px
    
}
.art em {
    left:-10px;
    right:auto;
    top:-10px;
    border-radius:0 0 18px 0;
    padding:10px 15px;
    font-size:13px;
    background:#00cf30
    
}
.art em.hot {
    background:#ff1717
    
}
.info {
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:10px;
    background:#080808;
    border-radius:6px;
    text-align:center
    
}
.info h2 {
    min-height:auto;
    margin:0 0 10px;
    padding-bottom:10px;
    border-bottom:1px solid #ffffff30;
    font-size:13px
    
}
.info ul {
    list-style:none;
    margin:0;
    padding:0;
    font-size:11px
    
}
.info li {
    display:flex;
    justify-content:space-between;
    gap:5px;
    margin:7px 0
    
}
.info li i {
    color:#16cb87;
    font-style:normal;
    letter-spacing:2px
    
}
.time {
    margin:10px 0 7px;
    font-size:11px;
    font-weight:700
    
}
.info p { 
    position:relative;
    height:20px;
    margin:0;
    background:#edf0f4
    
}
.info p>i {
    background:repeating-linear-gradient(45deg,#16b94e,#16b94e 7px,#2fc862 7px,#2fc862 13px)
    
}
.info p>strong { 
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    color:#080808;
    font-size:12px
    
}
.no-pattern {
    display:grid;
    gap:7px;
    font-size:11px
    
}
.no-pattern b {
    color:#ff313b
    
}
.no-pattern span {
    line-height:1.6
    
}
@media(max-width:950px) {
    .grid {
        grid-template-columns:repeat(2,minmax(0,1fr))
        
    }
    
}
@media (max-width: 600px) {
    .grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
    }

    .card {
        display: block;
        width: 100%;
        min-width: 0;
        min-height: 0;
        padding: 5px;
        overflow: hidden;
        border-radius: 6px;
    }

    .art {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-width: 2px;
    }

    .art img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .art em {
        top: -5px;
        left: -5px;
        padding: 6px 9px;
        font-size: 9px;
    }

    .info {
        width: 100%;
        min-width: 0;
        min-height: 145px;
        margin-top: 5px;
        padding: 7px 5px;
    }

    .info h2 {
        margin-bottom: 6px;
        padding-bottom: 6px;
        font-size: 9px;
    }

    .info ul {
        font-size: 8px;
    }

    .info li {
        margin: 5px 0;
        gap: 2px;
    }

    .info li i {
        letter-spacing: 0;
        white-space: nowrap;
    }

    .time {
        margin: 7px 0 5px;
        font-size: 8px;
        white-space: nowrap;
    }

    .info p {
        height: 17px;
    }

    .info p > strong {
        font-size: 10px;
    }

    .no-pattern {
        min-height: 70px;
        font-size: 8px;
    }

    .banner-slider {
        aspect-ratio: 3.8;
    }
}