.blog-entry {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid #ddd; /* Bordure légère */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Ombre */
    transition: transform 0.3s ease-in-out;
}

.blog-entry:hover {
    
    .voir-plus a {
        color: green; /* Texte devient vert au survol */
    }
    .block-20 {
        transform: scale(1.02); /* Légère élévation au survol */
    }
    .meta-index a {
        color: green;
    }
}

.block-20 {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center center;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease-in-out;
}

.text {
    padding: 15px;
}

.meta-index {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: green;
    align-items: center;
}

.meta-index a {
    color: black;
    font-weight: 600;
    text-decoration: none;
}

.heading {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.4;
}

.voir-plus a {
    padding-top: 10px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}


/*--------------------------------------------------------------
# Deatil offer 2 Section
--------------------------------------------------------------*/
.detail-offer-2 article {
    background-color: #fff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 8px;
    overflow: hidden;
}

.detail-offer-2 .post-img img {
    transition: 0.5s;
}

.detail-offer-2 .post-content {
    padding: 30px;
}

.detail-offer-2 .post-title {
    font-size: 25px;
    line-height: 24px;
    color: #04a52d;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 20px;
}

.detail-offer-2 .meta {
    position: relative;
    margin-top: -20px;
    padding: 0 30px;
}

.detail-offer-2 .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.detail-offer-2 .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.detail-offer-2 .meta .post-date {
    background-color: red;
    color: var(--contrast-color);
    padding: 6px 12px;
    text-align: center;
    margin-right: 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 20px;
}


.detail-offer-2 .whatsapp {
    text-transform: uppercase;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #04a52d;
    color: #fff;
    border-radius: 6px;
}

.detail-offer-2 .whatsapp i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.detail-offer-2 .call {
    text-transform: uppercase;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #1253b4;
    color: #fff;
    border-radius: 6px;
}

.detail-offer-2 .call i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.detail-offer-2 article:hover .post-title,
.detail-offer-2 article:hover .whatsapp,
.detail-offer-2 article:hover .call {
    color: var(--accent-color);
}

.detail-offer-2 article:hover .post-img img {
    transform: scale(1.1);
}


