.status-badge{
    display:inline-flex;
    align-items:center;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.status-badge.draft{
    background:#3b2f00;
    color:#ffd54f;
    border:1px solid #ffd54f55;
}

.dash-card{
    display:flex;
    flex-direction:column;
    height:640px;
    transition:.3s;
}

.dash-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 60px rgba(0,255,180,.18);
}

.dash-card h3{
    font-size:48px;
    line-height:1.05;
    min-height:110px;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;

    overflow:hidden;
    text-overflow:ellipsis;
}

.project-meta{
    margin-bottom:auto;
}

.hero-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:22px;
}

.hero-actions .btn,
.hero-actions button{
    height:48px;
    font-size:16px;
    border-radius:14px;
}

.hero-actions button:last-child{
    grid-column:1/-1;
}