.cgp-elite-grid {
    display: grid;
    gap: 24px;
    margin: 40px 0;
}

/* Card */
.cgp-card {
    display: flex;
    flex-direction: column;
    background: #01C4C8;
    transition: all 0.3s ease;
}

/* Styles */
.style-shadow .cgp-card { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.style-border .cgp-card { border: 1px solid #eee; }
.style-glass .cgp-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
}

/* Hover */
.has-hover-lift .cgp-card:hover { transform: translateY(-10px); }
.has-hover-scale .cgp-card:hover { transform: scale(1.05); }
.has-hover-glow .cgp-card:hover { box-shadow: 0 0 25px rgba(0,0,0,0.2); }

/* Equal height */
.cgp-equal-height .cgp-card { height: 100%; }

/* Body */
.cgp-card-body {
    display: flex;
    flex-direction: column;
}

/* Typography */
.cgp-card h4 { font-size:22px; font-weight:500; text-align: left; margin: 0 0 20px; }
.cgp-card p { font-size: 14px; text-align:left; margin: 0 0 20px; color: #555; }

/* Button */
.cgp-btn {
    margin-top: auto;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* Button styles */
.cgp-btn-solid { background: var(--cgp-accent); color: #fff; }
.cgp-btn-outline {
    border: 2px solid var(--cgp-accent);
    color: var(--cgp-accent);
}
.cgp-btn-ghost { color: var(--cgp-accent); }

/* Image */
.cgp-img-wrap {
    display: flex;
    justify-content: left;
    margin-top: 20px;
	margin-left: 20px;
}
.img-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
	background: #fff;
}
.img-container img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    padding: 15px;
}

/* Responsive */
@media (max-width:1024px){
    .cgp-elite-grid {
        grid-template-columns: repeat(var(--tablet),1fr)!important;
    }
}
@media (max-width:640px){
    .cgp-elite-grid {
        grid-template-columns: repeat(var(--mobile),1fr)!important;
    }
}