.cefa-last-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* CARD */
.cefa-post-card {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 35vh;

    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 6px 22px rgba(20, 45, 75, 0.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.cefa-post-card:hover {
    box-shadow: 0 10px 28px rgba(20, 45, 75, 0.10);
}


/* IMAGE */
.cefa-post-image {
    display: block;
    height: 100%;
    min-height: 210px;
    overflow: hidden;
}

.cefa-post-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform .4s ease;
}

.cefa-post-card:hover .cefa-post-image img {
    transform: scale(1.04);
}

.cefa-post-placeholder {
    width: 100%;
    height: 100%;
    background: #eef2f5;
}


/* CONTENT */
.cefa-post-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 22px 20px 18px;
}


/* CATEGORY */
.cefa-post-category {
    display: inline-flex;
    align-items: center;

    margin-bottom: 10px;
    padding: 5px 9px;

    border-radius: 6px;

    background: var(--cefa-vert-pale);
    color: var(--cefa-vert, #198f57);

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .03em;
}


/* TITLE */
.cefa-post-title {
    margin: 0 0 10px;

    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.cefa-post-title a {
    color: var(--cefa-bleu, #12365b);
    text-decoration: none;
    font-weight: 600 !important;
}


/* EXCERPT */
.cefa-post-excerpt {
    margin-bottom: 18px;

    color: #626b76;

    font-size: 13px;
    line-height: 1.55;
}


/* DATE */
.cefa-post-date {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-top: auto;

    color: #8a939d;

    font-size: 12px;
    line-height: 1;
}

.cefa-post-date svg {
    width: 15px;
    height: 15px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.cefa-post-card {
    position: relative;
    cursor: pointer;
}

.cefa-post-title a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}


/* TABLETTE */
@media (max-width: 1100px) {

    .cefa-last-posts {
        grid-template-columns: 1fr;
    }

    .cefa-post-card {
        grid-template-columns: 32% 68%;
    }

}


/* MOBILE */
@media (max-width: 600px) {

    .cefa-post-card {
        display: block;
    }

    .cefa-post-image {
        height: 190px;
        min-height: 0;
    }

    .cefa-post-content {
        padding: 20px;
    }

}

