/* =====================================================
   CONTENEUR GLOBAL DE LA CARTE
   ===================================================== */
.com-gmapfp-category-blog__item {
    position: relative; /* pour le dégradé */
    display: grid; /* pour superposition image + date */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Animation au survol du bloc complet */
.com-gmapfp-category-blog__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* =====================================================
   DÉGRADÉ SUR TOUTE LA VIGNETTE (image + titre)
   ===================================================== */
.com-gmapfp-category-blog__item::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.005) 100%
    );

    z-index: 1;
    pointer-events: none;
}

/* =====================================================
   GRILLE POUR SUPERPOSITION IMAGE + DATE
   ===================================================== */
.com-gmapfp-category-blog__item 
.col-md-12.column.dragula-container {
    display: grid;
}

/* Superposition image + date */
.com-gmapfp-category-blog__item .custom_field_1,
.com-gmapfp-category-blog__item .img {
    grid-area: 1 / 1;
}

/* =====================================================
   IMAGE
   ===================================================== */
.com-gmapfp-category-blog__item .img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    z-index: 2;
}

.com-gmapfp-category-blog__item .img img {
    display: block;
    width: 100%;
    height: auto;
}

/* =====================================================
   TITRE
   ===================================================== */
.com-gmapfp-category-blog__item .link_title {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

/* =====================================================
   BADGE DATE
   ===================================================== */
.com-gmapfp-category-blog__item .custom_field_1 {
    align-self: start;
    justify-self: start;

    margin: 14px;
    z-index: 3;

    background: rgba(255, 255, 255, 0.95); /* clair, lisible sur le dégradé */
    color: #111;

    padding: 6px 10px;
    border-radius: 12px;

    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    backdrop-filter: blur(6px);

    pointer-events: none;
}

/* Supprime le label "Date:" */
.com-gmapfp-category-blog__item 
.custom_field_1 .field-label {
    display: none;
}

.com-gmapfp-category-blog__item.blog-item {
    border-radius: 15px;
}
