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

.cgp-card {
    display: flex;
    flex-direction: column;
    background: #01C4C8;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* 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); 
    border: 1px solid rgba(255,255,255,0.2); 
}

/* Animation */
.has-anim .cgp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.cgp-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cgp-card h4 { margin: 0 0 10px 0; font-size: 1.2rem; }
.cgp-card p { margin: 0 0 20px 0; font-size: 0.95rem; color: #555; line-height: 1.5; }

.cgp-btn {
    margin-top: auto;
    color: #fff !important;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.img-container {
    width: 80px;
    height: 80px;
    border: solid 1px #fff;
    border-radius: 50%;
    background-color: #fff;
    margin-left: 20px;
	margin-top: 20px;
}

/* Image Handling */
.cgp-img-wrap img { width: 100%; height: 100%; object-fit: scale-down; display: block; padding: 15px; }

.cgp-card h4 {
    text-align: left;
    font-size: 1.2rem;
    color: rgb(85, 85, 85);
    line-height: 1.5;
    margin: 0px 0px 20px;
}
.cgp-card p {
    text-align: left;
    font-size: 0.95rem;
    color: rgb(85, 85, 85);
    line-height: 1.5;
    margin: 0px 0px 20px;
}

/* Editor Specifics */
.cgp-img-zone {
    height: 150px;
    background: #f8fafc;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    cursor: pointer;
}

.cgp-admin-link-box {
    margin-top: auto;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 8px;
}

.cgp-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 50% !important;
}

@media (max-width: 768px) {
    .cgp-elite-grid { grid-template-columns: 1fr !important; }
}