        .acf-image-end {
            margin-top: 30px;
        }

        .acf-post-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            display: block;
        }
/* ==============================
   Start WhatsApp Floating Join Button
============================== */
.wa-join-btn{
    position: fixed;
    right: 14px;
    bottom: 90px;
    z-index: 999999;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: Arial, sans-serif;
    animation: waPulse 1.6s infinite ease-in-out;
}

.wa-join-text{
    background: linear-gradient(180deg, #2aa819 0%, #19c95b 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    padding: 5px 20px 5px 6px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.16);
    white-space: nowrap;
}

.wa-join-icon{
    width: 56px;
    height: 56px;
    min-width: 56px;
    margin-left: -18px;
    border-radius: 50%;
    background: linear-gradient(180deg, #2aa819 0%, #19c95b 100%);
    border: 4px solid #ffffff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.wa-join-icon svg{
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.wa-badge{
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff2d2d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}

.wa-join-btn:hover .wa-join-icon{
    transform: scale(1.05);
    transition: all 0.25s ease;
}

@keyframes waPulse{
        0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}
@media (max-width: 768px){
    .wa-join-btn{
        right: 10px;
        bottom: 30px;
    }

    .wa-join-text{
        font-size: 13px;
        padding: 9px 18px 9px 10px;
    }

    .wa-join-icon{
        width: 52px;
        height: 52px;
        min-width: 52px;
        margin-left: -16px;
    }

    .wa-join-icon svg{
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px){
    .wa-join-btn{
        right: 8px;
        bottom: 75px;
    }

    .wa-join-text{
        font-size: 12px;
        padding: 8px 24px 8px 13px;
    }

    .wa-join-icon{
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .wa-join-icon svg{
        width: 20px;
        height: 20px;
    }

    .wa-badge{
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
}
/* ==============================
   End WhatsApp Floating Join Button
============================== */