/* Milestone 11 safe system/error states */
.m11-system-state {
    width: min(680px, 100%);
    min-height: 360px;
    margin: 7vh auto 0;
    display: grid;
    align-content: center;
    justify-items: start;
    padding: 36px;
    border: 1px solid var(--dq-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--dq-shadow);
}
.m11-system-state-code {
    display: inline-grid;
    place-items: center;
    min-width: 54px;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 4px 10px;
    border-radius: 5px;
    background: #edf3f8;
    color: var(--dq-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}
.m11-system-state h1 {
    max-width: 560px;
    margin: 4px 0 8px;
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.08;
    letter-spacing: -.035em;
}
.m11-system-state .muted { max-width: 560px; }
.m11-system-state-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

@media (max-width: 640px) {
    .m11-system-state {
        min-height: 320px;
        margin-top: 3vh;
        padding: 26px 22px;
    }
}
