/* ============================================================
 * Shortcode [prp_recent] (1.23.0)
 *
 * Liste verticale compacte des articles récents, format
 * "vignette à gauche / titre + date à droite".
 *
 * Variantes par flavor :
 *  - .prp-recent--nasteo : couleurs Nasteo (date orange)
 *  - .prp-recent--mumetc : couleurs Mumetc (date peach)
 *
 * Pas de contrainte de largeur : le container parent (Elementor)
 * gère le dimensionnement.
 * ============================================================ */

.prp-recent {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.prp-recent__item {
    margin: 0;
    padding: 0;
}

.prp-recent__link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.prp-recent__link:hover,
.prp-recent__link:focus-visible {
    outline: none;
}

.prp-recent__image {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    display: block;
}

.prp-recent__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.prp-recent__link:hover .prp-recent__image img {
    transform: scale(1.05);
}

.prp-recent__image-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient( 135deg, #f1f5f9 0%, #e2e8f0 100% );
}

.prp-recent__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding-top: 4px;
}

.prp-recent__title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
    transition: color 0.2s ease;
    /* Empêche le titre de devenir trop long et de pousser la mise en page */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prp-recent__date {
    font-size: 0.85rem;
    font-weight: 400;
}

/* ============================================================
 * Variante Nasteo : titre marine, date orange
 * ============================================================ */
.prp-recent--nasteo .prp-recent__title {
    color: #0C447C;
}

.prp-recent--nasteo .prp-recent__link:hover .prp-recent__title {
    color: #F59816;
}

.prp-recent--nasteo .prp-recent__date {
    color: #F59816;
}

/* ============================================================
 * Variante Mumetc : titre teal, date peach foncé
 * ============================================================ */
.prp-recent--mumetc .prp-recent__title {
    color: #344649;
}

.prp-recent--mumetc .prp-recent__link:hover .prp-recent__title {
    color: #F7B7A3;
}

.prp-recent--mumetc .prp-recent__date {
    color: #F7B7A3;
}

/* ============================================================
 * Responsive : sur très petit écran, vignette plus petite
 * ============================================================ */
@media (max-width: 480px) {
    .prp-recent__image {
        width: 64px;
        height: 64px;
    }
    .prp-recent__title {
        font-size: 0.72rem;
    }
}
