.wplt-myaccount-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

/* Small & clean cards */
.wplt-dashboard-box {
    padding: 15px 15px;
    background: var(--background-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none !important;
    transition: none !important;
}

/* Icons */
.wplt-dashboard-icon svg {
    width: 38px;
    height: 38px;
    fill: var(--primary-color);
    margin-bottom: 10px;
}

/* Labels */
.wplt-dashboard-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--headline-color);
}

/* ---------------------------
   Tablet View
---------------------------- */
@media (max-width: 1024px) {
    .wplt-myaccount-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------------------------
   Mobile View (2 columns)
---------------------------- */
@media (max-width: 600px) {
    .wplt-myaccount-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .wplt-dashboard-box {
        padding: 18px 12px;
    }

    .wplt-dashboard-icon svg {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }

    .wplt-dashboard-label {
        font-size: 13px;
    }
}
