.cgjm-dashboard{
    max-width:1400px;
    margin:40px auto;
}

.cgjm-dashboard h2{
    margin-bottom:5px;
}

.cgjm-dashboard p{
    margin-bottom:30px;
    color:#666;
}

/* =========================
   GRID
========================= */

.cgjm-grid{
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:24px;
}

.cgjm-dashboard, .cgjm-grid > * {
    white-space: normal;
}

/* =========================
   CARD
========================= */

.cgjm-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    transition:.25s;
}

.cgjm-card > * {
    white-space: normal;
    line-height: 1;
}

.cgjm-card:hover{
    transform:translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.cgjm-card-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    aspect-ratio: 1/1;
}

.cgjm-card-body{
    padding:18px;
}

.cgjm-card-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
}

.cgjm-meta{
    margin-bottom:8px;
    color:#555;
}

.cgjm-status{
    margin:20px 0;
}

.cgjm-badge{
    display:inline-block;
    padding:6px 12px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.cgjm-reviewed{
    background:#dcfce7;
    color:#166534;
}

.cgjm-pending{
    background:#fef3c7;
    color:#92400e;
}

.cgjm-action{
    margin-top:20px;
}

.cgjm-action .button{
    width:100%;
    text-align:center;
}

.cgjm-action .button:visited {
    color: #fff;
}

.cgjm-progress-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:24px;
    margin-bottom:32px;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

.cgjm-progress-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.cgjm-progress-header h3{
    margin:0;
}

.cgjm-progress-percent{
    font-size:30px;
    font-weight:700;
    color:#2563eb;
}

.cgjm-progress-bar{
    width:100%;
    height:10px;
    background:#e5e7eb;
    border-radius:999px;
    overflow:hidden;
}

.cgjm-progress-fill{
    height:100%;
    background:#16a34a;
    transition:.3s;
}

.cgjm-progress-stats{
    display:flex;
    justify-content:space-around;
    margin-top:20px;
    text-align:center;
}

.cgjm-progress-stats strong{
    display:block;
    font-size:24px;
}

.cgjm-progress-stats span{
    color:#666;
    font-size:14px;
}

/* =========================
   Tablet
========================= */
@media(max-width:992px){
    .cgjm-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

/* =========================
   Mobile
========================= */
@media(max-width:640px){
    .cgjm-grid{
        grid-template-columns:1fr;
    }
}