.hero {
    max-width: 1440px;
    grid-template-columns: minmax(360px, .72fr) minmax(680px, 1.28fr);
    gap: 50px;
}

.dashboard-wrap {
    min-width: 0;
    padding: 1px;
    background: linear-gradient(145deg, #eef4fc 0%, #f9fbfe 48%, #e9f0fa 100%);
    box-shadow: 0 26px 60px rgba(30, 58, 108, .12);
}

.dashboard {
    min-height: 548px;
    grid-template-columns: 58px 165px 1fr;
    grid-template-rows: 62px 1fr;
    border-radius: 15px;
}

.dashboard-topbar {
    position: relative;
    padding: 0 18px;
    gap: 11px;
}

.dashboard-logo img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
	padding:2px;
}

.dashboard-logo {
    width: 27px;
    height: 27px;
}

.dashboard-title {
    font-size: 13px;
}

.dashboard-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 220px;
    margin-left: auto;
    padding: 8px 10px;
    border: 1px solid #e1e7f0;
    border-radius: 7px;
    color: #8a95a8;
    font-size: 10px;
}

.dashboard-search kbd {
    padding: 1px 4px;
    border: 1px solid #dce3ed;
    border-radius: 4px;
    background: #f5f7fa;
    color: #8b95a7;
    font: inherit;
}

.dashboard-side {
    min-height: 486px;
    padding: 16px 9px 14px;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-side-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
}

.dashboard-side-menu span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: transparent;
    color: #8793a9;
    font-size: 15px;
}

.dashboard-side-menu .active {
    background: #e8f0ff;
    color: var(--brand);
}

.dashboard-side .dashboard-rail-brand {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--brand);
}

.dashboard-side .dashboard-rail-brand img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    padding: 2px;
}

.dashboard-context {
    padding: 25px 18px;
    border-right: 1px solid var(--line);
    background: #fcfdff;
    overflow: hidden;
}

.dashboard-context small,
.dashboard-context strong,
.dashboard-context span,
.dashboard-context a {
    display: block;
}

.dashboard-context small {
    color: #9aa4b6;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
}

.dashboard-context strong {
    margin-top: 5px;
    font-size: 14px;
}

.dashboard-context span {
    margin-top: 1px;
    color: #8c96a8;
    font-size: 9px;
}

.dashboard-context .context-label {
    margin-top: 27px;
    margin-bottom: 8px;
}

.dashboard-context a {
    margin: 3px 0;
    padding: 8px 10px;
    border-radius: 6px;
    color: #68758c;
    font-size: 10px;
    line-height: 1.25;
}

.dashboard-context a.active {
    background: #edf3ff;
    color: var(--brand);
    font-weight: 800;
}

.dashboard-body {
    padding: 29px 30px 25px;
    background: #f7f9fc;
}

.dashboard-heading strong {
    display: block;
    max-width: 250px;
    max-width: 330px;
    margin-top: 6px;
    font-size: 23px;
    line-height: 1.2;
}

.metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 14px;
}

.metric-grid article {
    min-width: 0;
    min-height: 92px;
    padding: 15px;
    background: #fff;
}

.metric-grid strong {
    font-size: 22px;
}

.metric-grid small,
.metric-grid em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-lower {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 12px;
}

.chart-card {
    min-width: 0;
    padding: 15px;
    background: #fff;
}

.chart {
    height: 92px;
}

.focus-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: linear-gradient(145deg, #f7faff, #eef4ff);
}

.focus-card small {
    color: var(--brand);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .07em;
}

.focus-card strong {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}

.focus-card p {
    margin: 5px 0 9px;
    color: #7c879b;
    font-size: 10px;
    line-height: 1.4;
}

.focus-card span {
    color: var(--brand);
    font-size: 9px;
    font-weight: 800;
}

.activity-card {
    margin-top: 12px;
    padding: 11px 13px;
    background: #fff;
}

@media (max-width: 1180px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .dashboard-wrap {
        width: 100%;
        max-width: 850px;
    }
}

@media (max-width: 600px) {
    .dashboard {
        min-height: 500px;
        grid-template-columns: 48px 125px 1fr;
    }

    .dashboard-search {
        display: none;
    }
}
