/* ===============================================
   CARD COMPONENT
   Basic content cards with header and body
   =============================================== */

.card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: none;
    border: 1px solid var(--border-light);
    transition: all 0.2s var(--ease-out);
}

.card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-xs);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.card-title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
}

.card-content {
    font-size: var(--text-sm);
    color: var(--text-body);
    line-height: var(--line-height-normal);
}