.dashboard-guest {
    max-width: 560px;
    margin: 2rem auto;
}

.dashboard-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-title {
    font-size: 1.75rem;
    font-weight: 600;
}

.dashboard-date {
    color: var(--lpx-secondary-text, #6c757d);
    text-transform: capitalize;
}

.dashboard-unread {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fdecec;
    color: #cc3d22;
    text-decoration: none;
    font-weight: 500;
}

.dashboard-unread:hover {
    color: #a3301b;
}

.dashboard-kpi {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6e9ef;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    min-height: 108px;
}

.dashboard-kpi:hover {
    border-color: #2f6fed;
    color: inherit;
}

.dashboard-kpi--live {
    background: #e9f0fe;
    border-color: #c5d6fb;
}

.dashboard-kpi__label {
    color: #757575;
    font-size: 0.9rem;
}

.dashboard-kpi__value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #14171f;
}

.dashboard-list__item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f0f2f5;
}

.dashboard-list li:last-child .dashboard-list__item {
    border-bottom: 0;
}

.dashboard-list__item:hover {
    background: #fafbfc;
    color: inherit;
}

.dashboard-status,
.dashboard-list__when {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.dashboard-status {
    padding: 4px 10px;
    border-radius: 999px;
}

.dashboard-status--live {
    background: #f4e3ff;
    color: #a020f0;
}

.dashboard-status--upcoming {
    background: #ebffeb;
    color: #249225;
}

.dashboard-status--done {
    background: #000000;
    color: #ffffff;
}

.dashboard-list__title {
    font-weight: 600;
}

.dashboard-list__meta {
    color: #757575;
    font-size: 0.85rem;
}

.dashboard-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.dashboard-shortcut {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid #e6e9ef;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    background: #fff;
}

.dashboard-shortcut:hover {
    border-color: #2f6fed;
    color: #2f6fed;
}
