/**
 * My Account — Dashboard Grid Cards
 * Section: 8
 */

/* ── 8. Dashboard Grid Cards ────────────────────────────────────────── */
.ostore-dashboard-header {
    margin-bottom: 20px;
}

.ostore-dashboard-welcome {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.ostore-dashboard-intro {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin: 0;
}

.ostore-dashboard-intro a {
    color: var(--color-primary, var(--color-sale));
    text-decoration: none;
    font-weight: 600;
}

.ostore-dashboard-intro a:hover {
    text-decoration: underline;
}

/* 2 cards per row on desktop — larger cards */
.ostore-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ostore-dashboard-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    text-decoration: none;
    /* No hover, no transition, no zoom */
}

.ostore-card-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.ostore-card-desc {
    font-size: 11px;
    color: var(--color-text-light);
    line-height: 1.4;
}
