@font-face {
    font-family: "Onest";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("./fonts/onest-latin.3db826ed1c5d.woff2") format("woff2");
}

@font-face {
    font-family: "Newsreader";
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url("./fonts/newsreader-latin.f94a697b1650.woff2") format("woff2");
}

@font-face {
    font-family: "Newsreader";
    font-style: italic;
    font-weight: 400 600;
    font-display: swap;
    src: url("./fonts/newsreader-italic-latin.e97067eb043b.woff2") format("woff2");
}

@font-face {
    font-family: "Material Symbols Outlined";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("./fonts/material-symbols-core.0a1efe641ed1.woff2") format("woff2");
}

:root {
    color-scheme: light;
    --cm-color-page-bg: #f9f8f5;
    --cm-color-surface: #fff;
    --cm-color-surface-soft: #eef1f5;
    --cm-color-surface-subtle: #f9f8f5;
    --cm-color-surface-hover: #e7e8e9;
    --cm-color-surface-accent: #fafbfc;
    --cm-color-text: #172139;
    --cm-color-text-secondary: #303a50;
    --cm-color-muted: #697185;
    --cm-color-subtle: #6c7584;
    --cm-color-border: #d9dde2;
    --cm-color-border-soft: #e8eaed;
    --cm-color-border-strong: #c9ced6;
    --cm-color-primary: #2e5a90;
    --cm-color-primary-hover: #234a7a;
    --cm-color-primary-strong: #244a78;
    --cm-color-primary-soft: #eaf0f7;
    --cm-color-primary-border: #cfdae8;
    --cm-color-success: #2e9e6b;
    --cm-color-success-strong: #267a55;
    --cm-color-success-soft: #e5f4ed;
    --cm-color-warning: #b3862a;
    --cm-color-warning-soft: #fbf3df;
    --cm-color-danger: #b3402e;
    --cm-color-danger-soft: #fff0f1;
    --cm-color-input-placeholder: #6c7584;
    --cm-color-input-focus-ring: rgb(46 90 144 / 25%);
    --cm-font-body: "Onest", Arial, sans-serif;
    --cm-font-title: "Onest", Arial, sans-serif;
    --cm-heading-tracking: normal;
    --cm-page-title-size: clamp(28px, 2.6vw, 34px);
    --cm-font-mono: "SF Mono", ui-monospace, monospace;
    --cm-font-size-xs: 0.75rem;
    --cm-font-size-sm: 0.875rem;
    --cm-font-size-base: 1rem;
    --cm-font-size-lg: 1.25rem;
    --cm-font-size-xl: 1.625rem;
    --cm-font-weight-medium: 500;
    --cm-font-weight-semibold: 600;
    --cm-font-weight-bold: 700;
    --cm-letter-spacing-eyebrow: normal;
    --cm-space-1: 0.25rem;
    --cm-space-2: 0.5rem;
    --cm-space-3: 0.75rem;
    --cm-space-4: 1rem;
    --cm-space-5: 1.25rem;
    --cm-space-6: 1.5rem;
    --cm-space-8: 2rem;
    --cm-radius-sm: 0.25rem;
    --cm-radius-md: 0.375rem;
    --cm-radius-lg: 0.5rem;
    --cm-radius-pill: 9999px;
    --cm-border-width: 1px;
    --cm-shadow-card: 0 1px 4px rgb(30 32 44 / 5%);
    --cm-shadow-floating: 0 12px 32px rgb(30 32 44 / 16%);
    --cm-transition-fast: 150ms ease;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    min-height: 100dvh;
    overflow-x: hidden;
    color: #172139;
    background: var(--cm-color-page-bg);
    font-family: var(--cm-font-body);
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

main,
section,
aside,
header,
footer,
nav,
article {
    min-width: 0;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 2px solid #2e5a90;
    outline-offset: 2px;
}

.material-symbols-outlined {
    display: inline-block;
    font: 400 1.5rem/1 "Material Symbols Outlined";
    font-feature-settings: "liga";
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

.cm-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.cm-shell-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.cm-shell {
    --cm-shell-library-width: 248px;
    --cm-shell-focus-sidebar-width: 248px;
    position: relative;
    display: flex;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    overflow: hidden;
    background: var(--cm-color-page-bg);
}

.cm-shell-skip-link {
    position: absolute;
    z-index: 100;
    top: -80px;
    left: 12px;
    padding: 12px 18px;
    color: var(--cm-color-text);
    background: white;
}

.cm-shell-skip-link:focus {
    top: 12px;
}

.cm-shell-workspace {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.cm-shell-navigation {
    display: contents;
}

.cm-shell-library-viewport,
.cm-shell-sidebar-viewport {
    height: 100%;
    min-width: 0;
    flex-shrink: 0;
    overflow: hidden;
    contain: layout paint;
}

.cm-shell-library-viewport {
    width: var(--cm-shell-library-width);
    background: #f2f1ee;
}

.cm-shell-sidebar-viewport {
    position: relative;
    width: 0;
    visibility: hidden;
    background: #f2f1ee;
}

.cm-shell[data-shell-navigation-state="focus-open"] .cm-shell-sidebar-viewport {
    width: var(--cm-shell-focus-sidebar-width);
    visibility: visible;
}

.cm-shell-sidebar {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 0 12px;
    overflow: hidden;
}

.cm-shell-library-sidebar {
    width: var(--cm-shell-library-width);
    border-right: 1px solid var(--cm-color-border);
    color: #526077;
    -webkit-user-select: none;
    user-select: none;
}

.cm-shell-sidebar-brand {
    position: relative;
    flex: 0 0 auto;
    padding: 22px 10px 18px;
}

.cm-shell-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #172139;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
}

.cm-shell-brand-wordmark {
    display: block;
    width: 172px;
    height: auto;
}

.cm-shell-sidebar-scroll-frame {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
}

.cm-shell-sidebar-scroll {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    padding-bottom: 24px;
}

.cm-shell-sidebar-scroll::-webkit-scrollbar { display: none; }

.cm-shell-sidebar-scroll-cue {
    position: absolute;
    left: 0;
    right: 0;
    display: grid;
    height: 24px;
    place-items: center;
    color: #697386;
    pointer-events: none;
    opacity: 0;
    transition: opacity 160ms ease;
}

.cm-shell-sidebar-scroll-cue-top {
    top: 0;
    background: linear-gradient(#f2f1ee 35%, #f2f1ee00);
}

.cm-shell-sidebar-scroll-cue-bottom {
    bottom: 0;
    background: linear-gradient(#f2f1ee00, #f2f1ee 65%);
}

.cm-shell-sidebar-scroll-cue svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[data-scroll-above="true"] .cm-shell-sidebar-scroll-cue-top,
[data-scroll-below="true"] .cm-shell-sidebar-scroll-cue-bottom {
    opacity: 1;
}

.cm-shell-sidebar-label {
    margin: 22px 12px 8px;
    color: #778297;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.cm-shell-sidebar-label:first-child {
    margin-top: 0;
}
.cm-shell-sidebar-links {
    display: grid;
    gap: 3px;
}

.cm-shell-sidebar-links a {
    display: flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    gap: 11px;
    padding: 8px 12px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--cm-color-text-secondary);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    transition:
        color 120ms ease,
        background-color 120ms ease;
}

.cm-shell-sidebar-links a:hover {
    color: #172139;
    background: #e9edf3;
}

.cm-shell-sidebar-links a.is-active {
    color: #2455a0;
    background: #e4ebf7;
    font-weight: 500;
}

.cm-shell-sidebar-links svg,
.cm-shell-sidebar-account-actions svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.cm-shell-sidebar-empty {
    padding: 8px 10px;
    color: #778297;
    font-size: 12px;
}

.cm-shell-sidebar-account-actions {
    display: grid;
    flex: 0 0 auto;
    gap: 2px;
    margin-top: auto;
    padding: 10px 0 12px;
    border-top: 1px solid #e1e5ec;
}

/* The full sidebar (five groups, thirteen links, the account row) stacks to
   about 950 px. Below that window height the vertical rhythm tightens in two
   steps so every link stays in view without scrolling; the text stays 14 px. */
@media (min-width: 721px) and (max-height: 1000px) {
    .cm-shell-sidebar-brand { padding: 22px 10px 16px; }
    .cm-shell-sidebar-label { margin: 14px 12px 6px; }
    .cm-shell-sidebar-links a { min-height: 34px; padding: 6px 12px; }
    .cm-shell-sidebar-scroll { padding-bottom: 12px; }
}

@media (min-width: 721px) and (max-height: 860px) {
    .cm-shell-sidebar-brand { padding: 22px 10px 14px; }
    .cm-shell-sidebar-label { margin: 12px 12px 5px; }
    .cm-shell-sidebar-links { gap: 2px; }
    .cm-shell-sidebar-links a { min-height: 34px; padding: 6px 12px; }
    .cm-shell-sidebar-account-actions { padding: 6px 0 8px; }
    .cm-shell-sidebar-account-actions a { padding: 6px 10px; }
}

.cm-shell-sidebar-account-actions a,
.cm-shell-sidebar-account-actions button {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 11px;
    padding: 8px 10px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #697386;
    font: inherit;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
    transition:
        color 120ms ease,
        background-color 120ms ease;
}

.cm-shell-sidebar-account-actions a:hover,
.cm-shell-sidebar-account-actions a:focus-visible,
.cm-shell-sidebar-account-actions a.is-active,
.cm-shell-sidebar-account-actions button:hover,
.cm-shell-sidebar-account-actions button:focus-visible {
    color: #172139;
    background: #e9edf3;
}

/* The feedback dialog: one small form, styled like the settings dialog. */
.cm-feedback-dialog {
    width: min(520px, calc(100vw - 32px));
    max-width: none;
    padding: 0;
    border: 1px solid var(--cm-color-border);
    border-radius: var(--cm-radius-lg);
    color: var(--cm-color-text);
    background: var(--cm-color-surface);
    box-shadow: var(--cm-shadow-floating);
    font-family: var(--cm-font-body);
}

.cm-feedback-dialog::backdrop {
    background: rgb(28 29 33 / 48%);
}

.cm-feedback-form {
    position: relative;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 24px;
}

.cm-feedback-title {
    margin: 0;
    padding-right: 40px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: var(--cm-heading-tracking);
}

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

.cm-feedback-field {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 550;
}

.cm-feedback-field select,
.cm-feedback-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--cm-color-border);
    border-radius: 8px;
    background: var(--cm-color-surface);
    color: var(--cm-color-text);
    font: inherit;
    font-weight: 400;
    line-height: 1.45;
}

.cm-feedback-field textarea {
    min-height: 130px;
    resize: vertical;
}

.cm-feedback-field select:focus-visible,
.cm-feedback-field textarea:focus-visible {
    outline: 2px solid var(--cm-color-input-focus-ring);
    outline-offset: 1px;
}

.cm-feedback-status {
    margin: 0;
    color: var(--cm-color-muted);
    font-size: 13px;
    line-height: 1.5;
}

.cm-feedback-status.is-error { color: var(--cm-color-danger); }
.cm-feedback-status.is-success { color: var(--cm-color-success-strong); }

.cm-feedback-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.cm-feedback-form[data-pending] .cm-btn-primary {
    opacity: 0.7;
    pointer-events: none;
}

.cm-shell-focus-sidebar {
    position: absolute;
    inset: 52px 0 0;
    height: calc(100% - 52px);
    display: none;
    width: var(--cm-shell-focus-sidebar-width);
    color: var(--cm-color-text);
}

.cm-shell-focus-sidebar.is-active {
    display: flex;
}

.cm-shell-sidebar-heading {
    padding: 24px 10px 16px;
}
.cm-shell-sidebar-heading h2 {
    margin: 0;
    font: 600 16px/1.4 var(--cm-font-body);
}
.cm-shell-sidebar-heading p {
    margin: 5px 0 0;
    color: var(--cm-color-muted);
    font-size: 12px;
}

.cm-shell-menu-toggle,
.cm-shell-contents-toggle {
    flex: 0 0 auto;
    min-height: 36px;
    align-self: center;
    padding: 6px 9px;
    border: 1px solid var(--cm-color-border);
    border-radius: 4px;
    color: var(--cm-color-text-secondary);
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.cm-shell-contents-toggle[aria-expanded="true"] {
    border-color: var(--cm-color-primary-border);
    color: var(--cm-color-primary-strong);
    background: var(--cm-color-primary-soft);
}

.cm-shell-menu-toggle,
.cm-shell-drawer-close {
    display: none;
}

.cm-shell-backdrop {
    position: absolute;
    z-index: 25;
    inset: 0;
    border: 0;
    background: rgb(11 20 37 / 45%);
    cursor: pointer;
}

.cm-shell-main {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    border-left: 1px solid #d9dde2;
}

.cm-shell-surface,
.cm-shell-surface-stack,
.cm-shell-surface-content,
.cm-shell-surface-body {
    min-height: 0;
}

.cm-shell-surface {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
}

.cm-shell-tab-strip,
.cm-shell-pane-toolbar {
    display: flex;
    min-height: 54px;
    flex: 0 0 54px;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-bottom: 1px solid #dfe4ec;
    background: #f2f1ee;
}

.cm-shell-tab-list,
.cm-shell-tabs {
    display: flex;
    min-width: 0;
    max-width: 100%;
    flex: 0 1 auto;
    align-self: stretch;
    align-items: center;
    gap: 4px;
    overflow: auto hidden;
    scrollbar-width: thin;
    scrollbar-color: #cbd3df transparent;
}

.cm-shell-tab,
.cm-shell-tabs-item {
    display: flex;
    min-width: 150px;
    max-width: 250px;
    height: 38px;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 0 8px 0 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #687386;
    font: 500 13px var(--cm-font-body);
}

.cm-shell-tab:hover { background: #e9edf3; }
.cm-shell-tab.is-active,
.cm-shell-tabs-item.is-active {
    border-color: #dce2eb;
    color: #172139;
    background: white;
    box-shadow: 0 1px 2px rgb(23 33 57 / 5%);
}

.cm-shell-tab-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 1.5;
}

.cm-shell-tab [data-shell-tab-title],
.cm-shell-tabs-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-shell-tabs button,
.cm-shell-tabs-item button {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}
.cm-shell-tabs-select {
    display: flex;
    min-width: 0;
    height: 36px;
    flex: 1 1 auto;
    align-items: center;
    gap: 9px;
    text-align: left;
    font: 500 14px/1.4 var(--cm-font-body);
}
.cm-shell-tabs-item .cm-shell-tabs-close {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 4px;
    color: #788396;
    font-size: 18px;
    line-height: 1;
}
.cm-shell-tabs-item .cm-shell-tabs-close:hover {
    color: #172139;
    background: #e8edf4;
}
.cm-shell-tabs-status {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: currentcolor;
}
.cm-shell-tabs-status[data-tab-status="changed"] { background: #b3862a; }
.cm-shell-tabs-item button:disabled { cursor: progress; opacity: 0.55; }
.cm-shell-tab-add {
    display: inline-flex;
    min-width: 32px;
    height: 34px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #788396;
    font-size: 23px;
    line-height: 1;
}
.cm-shell-tab-add:hover { color: #172139; background: #e5eaf2; }

.cm-shell-context-header {
    display: flex;
    height: 52px;
    align-items: center;
    padding: 0 14px;
    border-bottom: 1px solid #e0e5ed;
}
.cm-shell-mode-switch,
.cm-shell-mode-return {
    display: flex;
    min-height: 36px;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border: 0;
    border-radius: 6px;
    color: #516178;
    background: transparent;
    font: 500 12px var(--cm-font-body);
    cursor: pointer;
}
.cm-shell-mode-switch:hover,
.cm-shell-mode-return:hover { color: #172139; background: #e5eaf2; }
.cm-shell-mode-return { margin: -14px 0 18px; color: #2455a0; }
.cm-shell-mode-switch span,
.cm-shell-mode-return span { font-size: 18px; }
.cm-shell-mode-return .cm-shell-nav-label { font-size: inherit; }
.cm-shell-contents-toggle { display: none; }

.cm-shell-route-progress {
    position: absolute;
    z-index: 5;
    top: 48px;
    right: 0;
    left: 0;
    height: 2px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.cm-shell-route-progress::before {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0 2px 2px 0;
    background: var(--cm-color-primary);

    content: "";
    transform: scaleX(0);
    transform-origin: left;
}

.cm-shell-route-progress[data-state="loading"] {
    opacity: 1;
}

.cm-shell-route-progress[data-state="loading"]::before {
    animation: cm-shell-route-loading 1600ms cubic-bezier(0.22, 0.61, 0.36, 1)
        forwards;
}

.cm-shell-route-progress[data-state="complete"] {
    opacity: 0;
    transition: opacity 160ms ease 70ms;
}

.cm-shell-route-progress[data-state="complete"]::before {
    transform: scaleX(1);
    transition: transform 120ms ease-out;
}

.cm-shell-route-progress[data-state="cancelled"] {
    opacity: 0;
    transition: opacity 100ms ease;
}

@keyframes cm-shell-route-loading {
    0% {
        transform: scaleX(0.06);
    }

    48% {
        transform: scaleX(0.58);
    }

    100% {
        transform: scaleX(0.82);
    }
}

.cm-shell-navigation-status {
    min-width: 0;
    margin: 0 0 7px;
    overflow: hidden;
    color: #6c7584;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cm-shell-navigation-status:empty {
    display: none;
}

.cm-shell-navigation-status[data-state="error"] {
    color: #b3402e;
}

.cm-shell-tab-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 0 5px auto;
}

.cm-shell-surface-tab-actions {
    display: contents;
}

.cm-shell-surface-stack {
    display: flex;
    flex: 1 1 auto;
}

.cm-shell-surface-content {
    width: 100%;
    overflow: auto;
}

.cm-shell-surface-body {
    min-height: 0;
}

.cm-public-surface,
.cm-page-surface {
    width: 100%;
    min-height: 100dvh;
    padding: 24px 32px;
}

.cm-row,
.cm-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cm-content-stack,
.cm-page-heading {
    display: grid;
    gap: 8px;
}

.cm-page-heading > :where(h1, h2, p),
.cm-empty-state > :where(h2, p) {
    margin: 0;
}

.cm-list-plain {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cm-muted {
    color: #697386;
}

.cm-text-sm {
    font-size: 14px;
}

.cm-text-xs,
.cm-eyebrow {
    font-size: 12px;
}

.cm-eyebrow {
    margin: 0;
    color: #697386;
    font-weight: 600;
    letter-spacing: 0;
}

.cm-title {
    margin: 0;
    font-family: var(--cm-font-title);
    font-weight: 500;
}

.cm-title-lg {
    font-size: 20px;
}

.cm-title-xl {
    font-size: 26px;
}

.cm-card,
.cm-panel {
    border: 1px solid #d9dde2;
    border-radius: var(--cm-radius-md);
    background: #fff;
}

.cm-card {
    box-shadow: none;
}

.cm-panel {
    padding: 24px;
}

.cm-empty-state {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 32px 16px;
    color: #697386;
    text-align: center;
}

.cm-btn-primary,
.cm-btn-subtle,
.cm-btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition:
        border-color var(--cm-transition-fast),
        color var(--cm-transition-fast),
        background-color var(--cm-transition-fast),
        box-shadow var(--cm-transition-fast),
        transform 80ms ease;
}

.cm-btn-primary {
    color: #fff;
    background: #2e5a90;
}

.cm-btn-subtle {
    border-color: #d9dde2;
    background: #fff;
}

.cm-btn-danger {
    border-color: #b3402e;
    color: #b3402e;
    background: #fff;
}

.cm-btn-primary:hover {
    background: #234a7a;
}

.cm-btn-subtle:hover {
    border-color: #c9ced6;
    background: #f5f4f1;
}

.cm-btn-danger:hover {
    background: #fff0f1;
}

:is(
        .cm-shell-sidebar-links a,
        .cm-shell-sidebar-account-actions a,
        .cm-shell-tab-add,
        .cm-shell-tabs-select,
        .cm-shell-tabs-close,
        .cm-btn-primary,
        .cm-btn-subtle,
        .cm-btn-danger
    ):active:not(:disabled):not([aria-disabled="true"]) {
    transform: translateY(1px);
}

.cm-shell-tooltip {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    max-width: 240px;
    padding: 5px 8px;
    border: 1px solid rgb(38 39 43 / 12%);
    border-radius: 6px;
    color: #fff;
    background: rgb(38 39 43 / 94%);
    box-shadow: 0 4px 14px rgb(30 32 44 / 16%);
    font-size: 11px;
    line-height: 1.3;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(var(--cm-tooltip-x, 0), var(--cm-tooltip-y, 0), 0)
        translateY(2px);
    transition:
        opacity 100ms ease,
        transform 100ms ease;
    white-space: nowrap;
}

.cm-shell-tooltip[data-visible] {
    opacity: 1;
    transform: translate3d(var(--cm-tooltip-x, 0), var(--cm-tooltip-y, 0), 0);
}

.cm-btn-primary:disabled,
.cm-btn-subtle:disabled,
.cm-btn-danger:disabled,
[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.5;
}

.cm-form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.cm-label,
.cm-form-group > label {
    font-size: 14px;
    font-weight: 500;
}

.cm-input {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d9dde2;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
}

.cm-input:focus {
    border-color: #2e5a90;
    outline: 2px solid rgb(46 90 144 / 25%);
}

textarea.cm-input {
    min-height: 80px;
    resize: vertical;
}

/* Inline stroke icon for names the Material Symbols subset does not carry.
   Sized in em so the existing font-size rules on icon slots keep working. */
.cm-icon {
    width: 1em;
    height: 1em;
    flex: none;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.25;
}

.cm-new-tab-surface {
    min-height: 100%;
    padding: clamp(22px, 4vw, 52px);
    color: var(--cm-color-text);
    background: var(--cm-color-surface);
}

.cm-new-tab {
    width: 100%;
    max-width: 1060px;
    margin: 16px auto;
}

.cm-new-tab-heading {
    margin-bottom: 32px;
}
.cm-new-tab-heading h1 {
    margin: 0;
    font: 600 var(--cm-page-title-size)/1.2 var(--cm-font-title);
    letter-spacing: var(--cm-heading-tracking);
}
.cm-new-tab-label {
    margin: 14px 0;
    color: var(--cm-color-muted);
    font-size: 13px;
    font-weight: 500;
}

.cm-new-tab-group {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--cm-color-border-soft);
}

.cm-new-tab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 4px 24px;
}

.cm-new-tab-lead {
    margin: 8px 0 0;
    color: var(--cm-color-muted);
    font-size: 13px;
}

.cm-new-tab-lead a {
    color: var(--cm-color-primary);
    font-weight: 550;
}

.cm-new-tab-item-copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.cm-new-tab-item-copy small {
    color: var(--cm-color-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}

.cm-new-tab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--cm-color-text);
    font-size: 14px;
    font-weight: 500;
}

.cm-new-tab-item:hover {
    color: var(--cm-color-primary);
    background: var(--cm-color-primary-soft);
}
.cm-new-tab-item-icon {
    display: flex;
    width: 20px;
    flex: 0 0 20px;
    color: var(--cm-color-primary);
}
.cm-new-tab-item-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}
.cm-new-tab-empty {
    color: var(--cm-color-muted);
    font-size: 14px;
}

.cm-shell-sidebar-brand .cm-shell-brand-mark {
    display: none;
}

.cm-shell-sidebar-collapse {
    display: none;
}

/* Paper and perforations match the homescreen's profession stamp. */
.cm-paper-notice {
    min-width: 0;
    padding: 28px 32px;
    background: #eeece5;
    color: #172139;
    mask:
        radial-gradient(circle at 0 7px, transparent 4px, #000 4.5px) 0 0 / 100% 14px,
        radial-gradient(circle at 100% 7px, transparent 4px, #000 4.5px) 0 0 / 100% 14px,
        radial-gradient(circle at 7px 0, transparent 4px, #000 4.5px) 0 0 / 14px 100%,
        radial-gradient(circle at 7px 100%, transparent 4px, #000 4.5px) 0 0 / 14px 100%;
    mask-composite: intersect;
}
.cm-paper-notice .cm-paper-notice-title {
    margin: 0 0 10px;
    color: #172139;
    font: 500 27px/1.15 "Newsreader", Georgia, serif;
    letter-spacing: -.015em;
    text-wrap: balance;
}
.cm-paper-notice > p,
.cm-paper-notice > div > p {
    max-width: 76ch;
    margin: 0;
    color: #4e555d;
    font-size: 13px;
    line-height: 1.65;
}
@media (max-width: 480px) {
    .cm-paper-notice { padding: 24px; }
    .cm-paper-notice .cm-paper-notice-title { font-size: 24px; }
}
.cm-paid-launch {
    max-width: 720px;
    margin: 24px 0;
}
.cm-paid-launch-badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 20px;
    background: #e0eafb;
    color: #294a7e;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.4;
}

.cm-shell-sidebar-tools-heading {
    display: flex;
    align-items: center;
    margin: 18px 8px 8px 12px;
}

.cm-shell-sidebar-tools-heading .cm-shell-sidebar-label {
    flex: 1;
    margin: 0;
}

@media (min-width: 721px) {
    .cm-shell-sidebar-collapse {
        flex: 0 0 24px;
        display: grid;
        place-items: center;
        width: 24px;
        height: 24px;
        padding: 3px;
        border: 1px solid transparent;
        border-radius: 6px;
        background: transparent;
        color: #778297;
        cursor: pointer;
    }

    .cm-shell-sidebar-collapse:hover {
        background: #e6e5e2;
        color: #172139;
    }

    .cm-shell-sidebar-collapse:focus-visible {
        outline: 2px solid #526077;
        outline-offset: -2px;
    }

    .cm-shell-sidebar-collapse svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .cm-shell-sidebar-collapse[aria-expanded="false"] svg {
        transform: rotate(180deg);
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-sidebar-tools-heading {
        justify-content: center;
        margin: 8px 0;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-sidebar-tools-heading .cm-shell-sidebar-label {
        display: none;
    }

    .cm-shell[data-shell-course-navigation="true"] {
        --cm-shell-focus-sidebar-width: 320px;
    }

    .cm-shell[data-shell-course-navigation="true"] .cm-shell-context-header {
        display: none;
    }

    .cm-shell[data-shell-course-navigation="true"] .cm-shell-focus-sidebar {
        inset: 0;
        height: 100%;
    }

    .cm-shell-sidebar-viewport {
        transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms;
    }

    .cm-shell-library-viewport,
    .cm-shell-library-sidebar {
        transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .cm-shell-sidebar-links svg:not(.cm-shell-nav-lock),
    .cm-shell-sidebar-account-actions svg {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }
    .cm-shell-sidebar-account-actions > :is(a, button) {
        padding-inline: 12px;
    }
    .cm-shell-brand {
        position: relative;
        height: 28px;
    }
    .cm-shell-sidebar-brand .cm-shell-brand-mark {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 28px;
        height: 28px;
        max-width: none;
        opacity: 0;
        transition: opacity 160ms ease;
    }
    .cm-shell-brand-wordmark {
        max-width: 100%;
        height: 22px;
        object-fit: contain;
        object-position: left;
        transition: opacity 160ms ease;
    }

    .cm-shell-nav-label,
    .cm-shell-sidebar-label,
    .cm-shell-sidebar-empty,
    .cm-shell-brand,
    .cm-shell-nav-lock {
        white-space: nowrap;
        transition: opacity 160ms ease, transform 240ms ease;
    }

    .cm-shell-nav-label {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .cm-shell-sidebar-label {
        height: 18px;
        overflow: hidden;
        transition:
            height 260ms cubic-bezier(0.22, 1, 0.36, 1),
            margin 260ms cubic-bezier(0.22, 1, 0.36, 1),
            color 160ms ease,
            background-color 160ms ease;
    }
    .cm-shell-mode-return { overflow: hidden; flex-shrink: 0; }
    .cm-shell-sidebar-links a,
    .cm-shell-sidebar-account-actions > :is(a, button) {
        overflow: hidden;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] {
        --cm-shell-library-width: 64px;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-library-sidebar {
        padding-inline: 8px;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] :is(
        .cm-shell-nav-label,
        .cm-shell-sidebar-empty, .cm-shell-nav-lock
    ) {
        opacity: 0;
        transform: translateX(-6px);
        pointer-events: none;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-sidebar-label {
        height: 1px;
        margin: 8px 12px;
        color: transparent;
        background-color: #d5d9df;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-sidebar-label:first-child {
        margin-top: 0;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-sidebar-links {
        gap: 2px;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-sidebar-links a,
    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-sidebar-account-actions > :is(a, button) {
        width: 40px;
        height: 40px;
        min-height: 40px;
        margin-inline: auto;
        padding: 10px;
        gap: 0;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-brand-wordmark {
        opacity: 0;
    }

    .cm-shell[data-shell-sidebar-collapsed="true"] .cm-shell-brand-mark {
        opacity: 1;
    }

}

@media (prefers-reduced-motion: reduce) {
    .cm-shell-sidebar-scroll-cue,
    .cm-shell-brand-mark,
    .cm-shell-brand-wordmark,
    .cm-shell-library-sidebar,
    .cm-shell-nav-label,
    .cm-shell-sidebar-label,
    .cm-shell-sidebar-empty,
    .cm-shell-brand,
    .cm-shell-nav-lock,
    .cm-shell-library-viewport,
    .cm-shell-sidebar-viewport,
    .cm-shell-focus-sidebar {
        transition: none;
    }

    .cm-shell-route-progress[data-state="loading"]::before {
        animation: none;
        transform: scaleX(0.72);
    }

    .cm-shell-route-progress,
    .cm-shell-route-progress::before,
    .cm-shell-tooltip,
    .cm-shell-sidebar-links a,
    .cm-shell-sidebar-collapse,
    .cm-shell-sidebar-account-actions a,
    .cm-shell-tab-add,
    .cm-btn-primary,
    .cm-btn-subtle,
    .cm-btn-danger {
        transition: none;
    }

    :is(
            .cm-shell-sidebar-links a,
            .cm-shell-sidebar-account-actions a,
            .cm-shell-tab-add,
            .cm-shell-tabs-select,
            .cm-shell-tabs-close,
            .cm-btn-primary,
            .cm-btn-subtle,
            .cm-btn-danger
        ):active:not(:disabled):not([aria-disabled="true"]) {
        transform: none;
    }
}

@media (max-width: 1100px) and (min-width: 721px) {
    .cm-shell {
        --cm-shell-library-width: 208px;
        --cm-shell-focus-sidebar-width: 232px;
    }
}

@media (max-width: 720px) {
    .cm-shell {
        --cm-shell-library-width: min(304px, calc(100vw - 48px));
        --cm-shell-focus-sidebar-width: min(304px, calc(100vw - 48px));
    }
    .cm-shell-library-viewport,
    .cm-shell-sidebar-viewport {
        position: absolute;
        z-index: 30;
        inset: 0 auto 0 0;
        width: 0;
        visibility: hidden;
    }
    .cm-shell[data-shell-menu-open="true"] .cm-shell-library-viewport {
        width: var(--cm-shell-library-width);
        visibility: visible;
    }
    .cm-shell[data-shell-navigation-state="focus-open"]
        .cm-shell-sidebar-viewport {
        width: var(--cm-shell-focus-sidebar-width);
        visibility: visible;
    }
    .cm-shell-focus-sidebar {
        top: 52px;
    }
    .cm-shell-context-header { padding-right: 48px; }
    .cm-shell-contents-toggle { display: inline-flex; }
    .cm-shell-sidebar-links a {
        min-height: 44px;
        font-size: 14px;
    }
    .cm-shell-menu-toggle {
        display: inline-flex;
    }
    .cm-shell-drawer-close {
        position: absolute;
        z-index: 2;
        top: 10px;
        right: 10px;
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        padding: 0;
        border: 0;
        border-radius: 4px;
        color: inherit;
        background: transparent;
        font-size: 25px;
        cursor: pointer;
    }
    .cm-shell-sidebar-brand {
        padding-top: 28px;
    }
    .cm-shell-sidebar-brand .cm-shell-drawer-close {
        top: 20px;
        right: 0;
    }
    .cm-shell-main {
        border-left: 0;
    }
    .cm-shell-tab-strip {
        gap: 5px;
        padding: 0 8px;
    }
    .cm-shell-tab-list {
        flex-shrink: 1;
    }
    .cm-shell-tab {
        min-width: 130px;
        max-width: 185px;
    }
    .cm-shell-tab-actions {
        gap: 0;
    }
    .cm-shell-surface-stack[style*="width"] {
        width: 100% !important;
    }
    .cm-new-tab-surface {
        padding: 24px 20px;
    }
    .cm-new-tab-group { grid-template-columns: 1fr; gap: 0; padding: 14px 0; }
}

/* Theory links stay visible when the theory itself is locked: the entry is
   dimmed and carries the shell's own lock glyph, never a character. */
.cm-shell-sidebar-links a.is-locked,
.cm-new-tab-item.is-locked,
.cm-shell-rail-link.is-locked {
    opacity: 0.6;
}

.cm-shell-nav-lock {
    flex: none;
    width: 12px;
    height: 12px;
    margin-left: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.85;
}

.cm-new-tab-item .cm-shell-nav-lock {
    margin-left: 6px;
}

/* Flash messages: one notice per queued message, shown once on the next page. */
.cm-flash-stack {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.cm-flash-stack.is-inset {
    margin-bottom: 0;
    padding: 14px clamp(16px, 3vw, 40px) 0;
}

.cm-flash {
    padding: 10px 12px;
    border: 1px solid var(--cm-color-primary-border);
    border-radius: 8px;
    color: var(--cm-color-primary-strong);
    background: var(--cm-color-primary-soft);
    font-size: 12.5px;
    line-height: 1.45;
}

.cm-flash.is-error {
    border-color: color-mix(in srgb, var(--cm-color-danger) 28%, var(--cm-color-border));
    color: var(--cm-color-danger);
    background: var(--cm-color-danger-soft);
}

.cm-flash.is-success {
    border-color: color-mix(in srgb, var(--cm-color-success) 35%, var(--cm-color-border));
    color: var(--cm-color-success-strong);
    background: var(--cm-color-success-soft);
}

/* CoMpanion timer chip beside the tabs: quiet, static, one second at a time. */
.cm-timer-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
}

.cm-timer-chip-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 32px;
    padding: 0 11px;
    border: 1px solid var(--cm-color-border);
    border-radius: 999px;
    background: var(--cm-color-surface);
    color: var(--cm-color-muted);
    font: inherit;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
}

.cm-timer-chip.is-active .cm-timer-chip-button {
    color: var(--cm-color-text);
}

.cm-timer-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cm-color-border-strong);
}

.cm-timer-chip.is-running .cm-timer-chip-dot { background: var(--cm-color-success); }
.cm-timer-chip.is-paused .cm-timer-chip-dot { background: #d29a2f; }
.cm-timer-chip.is-nudge .cm-timer-chip-dot { background: #d29a2f; }

.cm-timer-chip.is-nudge .cm-timer-chip-button {
    border-color: #e6c98a;
    background: #fff8e8;
    color: #7a5a12;
}

.cm-timer-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    display: grid;
    gap: 10px;
    width: 260px;
    padding: 14px;
    border: 1px solid var(--cm-color-border);
    border-radius: 12px;
    background: var(--cm-color-surface);
    box-shadow: 0 10px 30px rgb(23 33 57 / 12%);
}

.cm-timer-panel-title {
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
}

.cm-timer-panel-time {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
}

.cm-timer-panel-meta,
.cm-timer-panel-nudge,
.cm-timer-panel-note {
    margin: 0;
    color: var(--cm-color-muted);
    font-size: 12.5px;
}

.cm-timer-panel-nudge {
    color: var(--cm-color-text);
    line-height: 1.45;
}

.cm-timer-panel-note {
    color: var(--cm-color-danger);
}

.cm-timer-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cm-timer-panel-actions .cm-btn-subtle.is-danger {
    color: var(--cm-color-danger);
}

.cm-timer-panel-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
    border-top: 1px solid var(--cm-color-border-soft);
    font-size: 12.5px;
}

.cm-timer-panel-foot a {
    color: var(--cm-color-primary-strong);
    text-decoration: none;
}

/* --- Orientation for new students (shell/orientation.py) ------------------ */

/* The welcome card on the Academie. Nested selectors on purpose: the
   dashboard resets heading and paragraph margins inside .crd. */
.cm-orientation-welcome {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
    padding: 22px 24px;
    border: 1px solid #dce5f2;
    border-radius: 10px;
    background: #f4f8fd;
}

.cm-orientation-welcome-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cm-orientation-welcome .cm-orientation-welcome-eyebrow {
    margin: 0 0 4px;
    color: #365f8d;
    font-size: 12px;
    font-weight: 550;
}

.cm-orientation-welcome h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: var(--cm-heading-tracking);
}

.cm-orientation-welcome .cm-orientation-welcome-intro {
    margin: 6px 0 0;
    color: var(--cm-color-muted);
    font-size: 13px;
    line-height: 1.5;
}

.cm-orientation-welcome-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 14px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cm-orientation-welcome-areas li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cm-orientation-area-icon {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid #dce5f2;
    border-radius: 8px;
    color: var(--cm-color-primary);
    background: #fff;
}

.cm-orientation-area-icon svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.is-locked > .cm-orientation-area-icon {
    color: #8b96a6;
}

.cm-orientation-welcome-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
    font-size: 13px;
    line-height: 1.45;
}

.cm-orientation-welcome-copy a,
.cm-orientation-welcome-copy strong {
    font-weight: 600;
}

.cm-orientation-welcome-copy a {
    color: var(--cm-color-primary);
}

.cm-orientation-welcome-copy a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cm-orientation-welcome-copy > span {
    color: var(--cm-color-muted);
}

.cm-orientation-welcome-copy em {
    color: #8b96a6;
    font-style: normal;
}

.cm-orientation-welcome .cm-orientation-welcome-foot {
    margin: 0;
    font-size: 13px;
    font-weight: 550;
}

.cm-orientation-welcome-foot a {
    color: var(--cm-color-primary);
}

/* A first-visit hint: one amber line with "Begrepen". */
.cm-orientation-hint {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 7px 12px;
    border: 1px solid #e6c98a;
    border-radius: 8px;
    color: #5a4712;
    background: #fff8e8;
    font-size: 12.5px;
    line-height: 1.45;
}

.cm-orientation-hint-text {
    flex: 1 1 320px;
    min-width: 0;
}

.cm-orientation-hint .cm-btn-subtle {
    flex: none;
    height: 28px;
    padding: 0 10px;
    font-size: 12px;
}

.course-runtime-reader-toolbar .cm-orientation-hint {
    margin: 4px auto 4px 0;
}

.practice-workspace > .cm-orientation-hint {
    margin-bottom: 20px;
}

/* The Rondleiding page. */
.cm-orientation-surface {
    min-height: 100%;
    padding: clamp(22px, 4vw, 52px);
    color: var(--cm-color-text);
    background: var(--cm-color-surface);
}

.cm-orientation {
    width: 100%;
    max-width: 860px;
    margin: 16px auto;
}

.cm-orientation-heading {
    margin-bottom: 28px;
}

.cm-orientation-heading h1 {
    margin: 0;
    font: 600 var(--cm-page-title-size)/1.2 var(--cm-font-title);
    letter-spacing: var(--cm-heading-tracking);
}

.cm-orientation-heading p {
    max-width: 640px;
    margin: 10px 0 0;
    color: var(--cm-color-muted);
    font-size: 14px;
    line-height: 1.55;
}

.cm-orientation-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--cm-color-border-soft);
}

.cm-orientation-area {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--cm-color-border-soft);
}

.cm-orientation-area .cm-orientation-area-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-color: var(--cm-color-border-soft);
}

.cm-orientation-area .cm-orientation-area-icon svg {
    width: 19px;
    height: 19px;
}

.cm-orientation-area-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.cm-orientation-area-copy h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: var(--cm-heading-tracking);
}

.cm-orientation-area-copy p {
    margin: 0;
    color: var(--cm-color-muted);
    font-size: 13.5px;
    line-height: 1.5;
}

.cm-orientation-area-copy a {
    color: var(--cm-color-primary);
    font-size: 13px;
    font-weight: 550;
}

.cm-orientation-area-copy a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cm-orientation-area-note {
    color: #8b96a6;
    font-size: 12.5px;
}

.cm-orientation-area.is-locked h2 {
    color: var(--cm-color-muted);
}

.cm-orientation-foot {
    display: grid;
    justify-items: start;
    gap: 10px;
    margin-top: 26px;
    color: var(--cm-color-muted);
    font-size: 13px;
    line-height: 1.5;
}

.cm-orientation-foot p {
    margin: 0;
}

.cm-orientation-note {
    color: var(--cm-color-success-strong);
    font-weight: 550;
}
