    .featured-mini-image{
    width: 150px;
    min-width: 150px;
    height: 100%;
    overflow: hidden;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    display: flex;
    align-items: stretch;
}

.featured-mini-image__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px){
    .featured-mini-image{
        width: 135px;
        min-width: 135px;
    }
}

@media (max-width: 575.98px){
    .featured-mini-image{
        width: 120px;
        min-width: 120px;
    }
}





.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 180px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    z-index: 1055;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-label {
    background: #111827;
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
    opacity: 0;
    transform: translateX(8px);
    transition: all .2s ease;
    pointer-events: none;
}

.whatsapp-float-wrap:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    color: #fff;
}