body {
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
    overflow-x: clip !important;
    width: 100vw !important;
    min-height: 100vh;
    font-weight: 400;
    color: #000;
}

.max-row {
    max-width: 1200px;
}

.ppf-blogpost-card {
    padding: 24px;
    border: solid 2px black;
    border-radius: 40px;
    min-height: 505px;
}

/* Conteneur de l'image de la carte */
.ppf-blogpost-card-img {
    width: 100%;
    height: 150px;
    border-radius: 25px;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
}

.ppf-blogpost-card-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    /* prend le même background que le div */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    transform: scale(1);
}

/* Au hover sur la carte, zoom de l'image */
.ppf-blogpost-card:hover .ppf-blogpost-card-img::before {
    transform: scale(1.1);
}

.ppf-blogpost-card-title a {
    font-size: 16px;
    font-weight: 700;
    display: block;
    min-height: 85px;
    line-height: 1.3;
    color: black;
    text-decoration: none;
    transition: all 0.7s ease;
}

.ppf-blogpost-card-title a:hover {
    color: #FBBA00;
    cursor: pointer;
}

.ppf-blogpost-card-infos {
    color: #FBBA00;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}

.ppf-blogpost-card-details {
    min-height: 150px;
    height: auto;
}

.ppf-blogpost-card-exerpt {
    margin-bottom: 20px;
    line-height: 1.25;
}

/* gestion du anchor */

/* bouton */
a.blogcard-anchor {
    color: black!important;
    background-color: #FBBA00;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.4s ease;
}

/* animation hover */
a.blogcard-anchor:hover {
    transform: translateY(-4px);
}

.icon-wrapper {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
}

/* Image par défaut visible */
.icon-wrapper .icon-default {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
    opacity: 0;
}

/* Image au hover cachée par défaut */
.icon-wrapper .icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
    opacity: 1;
}

.explore-folders-btn {
    background-color: #fbba00;
    padding: 16px;
    border-radius: 28px;
    transition: all 0.7s ease;
    font-weight: 500;
}

.explore-folders-btn:hover {
    scale: 1.1;
    cursor: pointer;
}

.nav-div {
    display: flex;
    gap: 8px;
    /* remplace pe-2 */
    justify-content: center;
}

.nav-blog-el:hover,
.nav-start img:hover,
.nav-end img:hover {
    cursor: pointer;
}

/* Animation fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ppf-blogpost-card {
    opacity: 0;
    /* état initial */
    animation: fadeIn 0.5s forwards;
    /* 0.5s peut être ajusté */
}

.nav-blog-el {
    padding: 2px 6px;
    border-radius: 6px;
    border: solid 1px rgba(0, 0, 0, 0.7);
}

.nav-blog-el.active {
    background-color: rgba(251, 186, 0, 0.4);
    border: solid 1px #FBBA00;
    color: #FBBA00;
}

.blogcard-category {
    display: inline-block!important;
}

.blogcard-category:hover {
    color: #FBBA00 !important;
    cursor: pointer;
}

.category-div {
    font-size: 14px;
    padding: 8px;
    font-weight: 500;
    border-radius: 25px;
    border: solid 2px #FBBA00;
    margin-right: 8px;
    margin-bottom: 12px;
}

.category-div:hover {
    cursor: pointer;
}

.category-div.active {
    background-color: #FBBA00;
}

@media (max-width: 768px) {
    .ppf-blogpost-card-exerpt {
        min-height: 80px;
    }

    .ppf-blogpost-card {
        min-height: 400px;
    }
}