body {
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: #f8fafc;
    margin: 0;
    padding: 40px;
    color: #111;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* GRID */
.cvx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .cvx-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .cvx-grid { grid-template-columns: repeat(1, 1fr); }
}

/* CARD */
.cvx-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: 0.2s;
}

.cvx-card:hover {
    transform: translateY(-4px);
}

/* TEXT */
.cvx-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cvx-org {
    font-size: 12px;
    color: #6b7280;
}

/* DATES */
.cvx-dates {
    margin-top: 10px;
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
}

/* BADGE */
.cvx-badge {
    position: absolute;
    top: 12px;
    right: 12px;

    font-size: 11px;
    font-weight: 700;

    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f4f6;
}

.cvx-badge.perm {
    background: #111;
    color: #fff;
}

/* BAR */
.cvx-bar {
    margin-top: 12px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.cvx-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #60a5fa, #2563eb);
    transition: width 1s ease;
}