.ws-block.ws-block-card {
    display: flex;
}

.unecatef-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
a.unecatef-card {
    text-decoration: none;
}

.unecatef-card__top {
    position: relative;
}

.unecatef-card__image-container {
    display: flex;
    overflow: hidden;
    height: 100%;
}

.unecatef-card__image {
    position: static !important;
    width: 100%;
    height: 225px !important;
    object-fit: cover;
}

.unecatef-card__categories {
    position: absolute;
    top: 17.5px;
    left: 20.5px;
    display: flex;
    gap: 10px;
    z-index: 1;
}

.unecatef-card__category,
.unecatef-card__primary-category {
    color: #000;
    background-color: #fff;

    padding: 7px 12px;
    border-radius: 99px;

    font-family: 'Montserrat';
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
}
.unecatef-card__primary-category {
    color: #fff;
    background-color: var(--unecatef-color-1);
}

.unecatef-card__btn {
    position: absolute;
    right: 31px;
    bottom: 0;
    transform: translateY(50%);
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--unecatef-color-1);

    width: 40px;
    height: 40px;
    border-radius: 99px;

    transition: transform .1s ease-out;
}
.unecatef-card:hover .unecatef-card__btn {
    transform: translateY(50%) scale(1.1);
}

.unecatef-card__informations {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;

    padding: 25px;

    color: #000;
    background-color: #eee;
}

.unecatef-card__date {
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 300;
}

.unecatef-card__title {
    color: #000;
    font-family: 'Montserrat';
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.unecatef-card__excerpt {
    color: #000;
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.unecatef-card__excerpt:first-child {
    font-size: 16px;
    font-weight: 600;
}

@media screen and (max-width: 767px){
    .unecatef-card__title {
        font-size: 18px;
    }
}
