.cards ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-top: 30px;
    list-style: none !important;
}

.cards ol > li {
    width: 100%;
    position: relative;
}

.cards .featured-img {
    background: var(--mainColor);
    height: 330px;
    background-size: cover !important;
    background-position: center !important;
    border: 0;
    border-radius: 24px;
    filter: brightness(0.85);
    /* outline: 2px solid rgba(255,255,255,50%); */
    /* outline-offset: -8px; */
    transform-origin: center;
    transform: scale(1) translateZ(0);
    transition: filter 200ms linear, transform 200ms linear;
}

.card:hover .featured-img {
    transform: scale(1.05) translateZ(0);
    outline: 2px solid rgba(255,255,255,0.75);
}

.cards .info-wrap {
    left: 0;
    right: 0;
    padding: 24px 24px 42px 24px;
    position: absolute;
    top: 0;
}

.cat-wrap {
    border-radius: 3px;
    line-height: 20px;
    color: rgba(255,255,255,0.75);
    text-shadow: 2px 2px 20px rgb(0 0 0 / 20%);
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cards .info-wrap h3 {
    margin-top: 10px;
    transition: 0.3s all;
    padding-bottom: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 1.5rem;
    text-shadow: 2px 2px 20px rgb(0 0 0 / 20%);
    line-height: 1.25em;
}

.cards .info-wrap span {
    background: #ffffff;
    padding: 2px 10px 0px 10px;
    border-radius: 50px;
    color: #474747;
    margin-top: 2px;
    text-transform: uppercase;
    display: inline-block;
    cursor: default;
    font-size: 12px;
}

.cards .profile-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.cards .profile-wrap img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid white;
}

.cards .profile-wrap div {
    margin-top:7px;
}

.cards .profile-wrap h4 {
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background: var(--exhibitionCurrent);
    padding: 8px 13px;
    border-radius: 20px;
}

.cards .profile-wrap p {
    text-transform: uppercase;
    color: white;
    font-size: 10px;
    padding: 0;
    line-height: 14px;
}

.cards .profile-wrap p i {
    margin-right:5px;
}

.cards .date-wrap {
    padding: 14px 10px 12px;
    border-radius: 11px;
    display: block;
    text-align: center;
    width: 64px;
    background: white;
}

.cards .date-wrap h5 {
    color: black;
    font-size: 11px;
    display: block;
    text-transform: uppercase;
    padding: 0;
    text-align: center;
}

.cards .date-wrap h3 {
    padding: 0;
    text-align: center;
    margin-top: 3px;
    font-size: 24px;
}

@media (max-width:980px) {
    .cards ol {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
    }
}

@media (max-width:680px) {
    .cards ol {
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}