/* ==========================================================
   MYJAT Card System
========================================================== */

.myjat-card{
background:var(--myjat-surface);
border:1px solid var(--myjat-border);
border-radius: var(--myjat-radius-1);
box-shadow:var(--myjat-shadow-md);
transition:all var(--myjat-speed) var(--myjat-ease);
}

.myjat-card:hover{
transform:translateY(-2px);
box-shadow:var(--myjat-shadow-lg);
}

.myjat-card-title{
display:flex;
align-items:center;
padding-bottom:14px;
border-bottom:1px solid var(--myjat-border-light);
font-size:22px;
font-weight:var(--myjat-fw-bold);
color:var(--myjat-text);
}
