/* ==========================================================================
   5. PORTFOLIO / ARTICLES
   ========================================================================== */
.p60 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.inner-wrap-cards {
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.FourC { width: calc(50% - 20px); }
.TwoC { width: 100%; }

@media (max-width: 768px) {
    .FourC { width: 100%; margin-bottom: 40px; }
}

.link-act {
    display: block;
    text-decoration: none;
    color: var(--couleur-texte);
}

.event { position: relative; cursor: pointer; }

/* Adoucissement des cartes */
.cover {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px; /* Coins arrondis */
    box-shadow: 0 10px 30px rgba(0,0,0,0.06); /* Ombre douce */
}

.bigone .cover { aspect-ratio: 4 / 4.4; }
.TwoC.cover { aspect-ratio: 16 / 9; }

.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.link-act:hover .cover img {
    transform: scale(1.03); /* Zoom plus subtil */
}

/* Pastilles aux couleurs de Provence */
.lespastilles {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 10;
}

.pastille, .p-etat {
    padding: 6px 16px;
    font-family: var(--police-titre);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pastille.podcast { background: var(--provence-vert); color: #fff; }
.pastille.interview { background: var(--provence-bleu); color: #fff; }
.pastille.article { background: var(--provence-jaune); color: var(--couleur-texte); }

.p-etat { background: var(--provence-violet); color: #fff; }

.flex-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.date-event {
    font-size: 1rem;
    font-weight: 400;
    color: var(--couleur-texte-secondaire);
    font-family: var(--police-titre);
}

.date-event span { color: var(--provence-jaune); font-weight: bold; }

.style {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--provence-violet);
    font-family: var(--police-titre);
}

.name-event {
    font-size: 2.2rem;
    font-family: var(--police-texte);
    font-weight: 400;
    line-height: 1.2;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.link-act:hover .name-event { color: var(--provence-violet); }

.twoC-name-event { font-size: 1.6rem; }