#liquidity-providers .lp-card {
    background: #f8f8fb;
    border-radius: 22px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

/* LOGO STYLE */
#liquidity-providers .lp-card img {
    max-width: 80%;
    max-height: 55px;
    object-fit: contain;
    opacity: 0.85;
    transition: .3s ease;
}

/* HOVER EFFECT */
#liquidity-providers .lp-card:hover {
    transform: translateY(-6px) scale(1.05);
    border-color: #c59d29;
    box-shadow: 0 0 18px rgba(197,157,41,0.55);
    background: #ffffff;
}

#liquidity-providers .lp-card:hover img {
    opacity: 1;
}

.ck-img {
    width: 100%;
    max-width: 900px;       /* adjust size */
    border-radius: 20px;    /* matches your theme */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: .3s ease;
}

.ck-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
