/* 대시보드 */
.dashboard-welcome { margin-bottom: 48px; }
.dashboard-welcome h1 { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
.dashboard-welcome p { color: var(--text-light); font-size: 16px; margin-top: 8px; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.dashboard-card {
    display: block; text-decoration: none;
    position: relative; padding: 32px;
}
.dashboard-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.dashboard-card p { font-size: 14px; color: var(--text-light); }
.card-arrow {
    position: absolute; top: 28px; right: 28px;
    font-size: 20px; color: var(--text-muted); transition: transform var(--transition);
}
.dashboard-card:hover .card-arrow { transform: translateX(4px); color: var(--primary); }
