article {
    position: relative;
    width: 49%;
    transition: all .2s;
    padding: min(2rem,4vw);
    flex-direction: column;
    row-gap: min(1.5rem,2vw);
    display: flex !important;
    border-radius: min(30px,3vw);
    background-color: var(--cLwhite);
    box-shadow: 0px 15px 30px #00000029;
}
article:hover {translate: 0 2%;}
article .rs {
    position: relative;
    margin-top: calc(min(2.6rem,8vw) * -1);
}
article .tag {font-size:min(14px,3vw);}
article .flex {
    gap: min(2rem,2vw);
    align-items: center;
    justify-content: space-between;
}
article .flex > * {margin-block: 0;}
article .flex > img {
    object-fit: contain;
    width: min(110px,13vw);
    height: min(57px,7vw);
}
article .flex p {color: var(--cLdimGray);}
article:hover .flex p {text-decoration: underline;}
article .flex .arrow {
    margin-top: auto;
    padding: min(1.2817rem,4vw);
    border-color: var(--cLlimeGreen);
    background-color: var(--cLlimeGreen);
}
article > .text {
    height: 100%;
    row-gap: min(1rem,2vw);
    justify-content: space-between;
}
article .head {
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--cLlightGray);
}
article .head .time {
    position: relative;
    display: flex;
    font-size: min(23px,3.5vw);
    column-gap: min(1rem,2vw);
}
article .head .time b {display: block;}
article .head .time > span + span {
    position: relative;
    padding-left: min(1rem,2vw);
}
article .head .time > span + span::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 2px;
    content: '';
    height: 70%;
    display: block;
    transform: translateY(-50%);
    background-color: var(--cLlightGray);
}
article .body h2 {
    margin-block: 0;
    font-weight: 700;
    font-size: min(18px,3.5vw);
}
article .foot {
    position: relative;
    display: flex;
    column-gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

article .foot > img {
    position: relative;
    border-radius: .6rem;
    width: min(230px, 22vw);
    height: min(125px, 15vw);
}

article .foot .arrow {padding: min(1.2817rem,4vw);}
/* Responsive */
@media (min-width: 768px) {
    .tag {
        position: relative;
        padding: .2rem .9rem;
        display: inline-block;
        color: var(--cLwhite)!important;
        border-radius: 2rem;
        font-weight: 700;
        font-size: min(20px,3vw);
    }
}
@media (min-width: 1200px) {
    article .flex {flex-wrap: nowrap;}
    article {width: 32%;}
}