/* Страница «Внедрение» — палитра и hero как на «Отделах» / «Диагностике» */
:root {
    --b24-accent: #e2e8f0;
    --b24-accent-hover: #f8fafc;
    --b24-accent-muted: #a1a1aa;
    --b24-accent-rgb: 226, 232, 240;
    --b24-ink: #09090b;
    --b24-text: #e8ecf1;
    --b24-muted: #94a3b8;
    --b24-bg: #030303;
    --b24-bg-soft: #09090b;
    --b24-bg-elevated: #141414;
    --b24-line: rgba(255, 255, 255, 0.1);
    --b24-radius: 16px;
    --ip-free: #34d399;
    --ip-free-rgb: 52, 211, 153;
}

html[data-color-scheme="light"] {
    --b24-accent: #2563eb;
    --b24-accent-hover: #1d4ed8;
    --b24-accent-muted: #64748b;
    --b24-accent-rgb: 37, 99, 235;
    --b24-ink: #ffffff;
    --b24-text: #0f172a;
    --b24-muted: #64748b;
    --b24-bg: #f8fafc;
    --b24-bg-soft: #f1f5f9;
    --b24-bg-elevated: #fff;
    --b24-line: rgba(15, 23, 42, 0.08);
    --ip-free: #059669;
    --ip-free-rgb: 5, 150, 105;
}

body.input-page {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--b24-text);
    background: var(--b24-bg);
    line-height: 1.6;
}

.input-page .container:not(.b24-header-inner) {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.input-page .b24-hero .container {
    max-width: 1180px;
}

/* ─── Hero (как solutions / audit) ─────────────────────────── */
.b24-hero {
    position: relative;
    padding: 88px 0 72px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    --hero-bg: #030303;
    --hero-blue-rgb: 82, 82, 91;
    --hero-accent: #e2e8f0;
    --hero-accent-hover: #f8fafc;
    --hero-accent-2: #a1a1aa;
    --hero-accent-rgb: 226, 232, 240;
    --hero-floor-rgb: 113, 113, 122;
    --hero-primary-ink: #09090b;
    background-color: var(--hero-bg);
    background-image:
        radial-gradient(ellipse 68% 56% at 12% 58%, rgba(var(--hero-blue-rgb), 0.34) 0%, transparent 58%),
        radial-gradient(ellipse 52% 48% at 88% 14%, rgba(var(--hero-accent-rgb), 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 130% 42% at 50% 108%, rgba(var(--hero-floor-rgb), 0.09) 0%, transparent 48%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 22%, transparent 62%, rgba(0, 0, 0, 0.35) 100%);
}

.b24-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 55% 35% at 50% -8%, rgba(255, 255, 255, 0.06) 0%, transparent 55%);
}

.b24-hero .container {
    position: relative;
    z-index: 1;
}

.b24-hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px);
    background-size: 38px 38px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 20%, transparent 100%);
}

.b24-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.14;
    max-width: 900px;
    margin: 0 auto 22px;
    letter-spacing: -0.035em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.b24-hero-title span {
    background: linear-gradient(118deg, var(--hero-accent-hover) 0%, var(--hero-accent) 38%, var(--hero-accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--hero-accent);
    filter: drop-shadow(0 0 28px rgba(var(--hero-accent-rgb), 0.35));
}

@supports not (background-clip: text) {
    .b24-hero-title span {
        -webkit-text-fill-color: var(--hero-accent);
        filter: none;
    }
}

.b24-hero-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.input-page .b24-hero .b24-hero-lead {
    max-width: min(58rem, 100%);
    margin-bottom: 0;
}

html[data-color-scheme="light"] .b24-hero {
    --hero-bg: #f0f5ff;
    --hero-blue-rgb: 59, 130, 246;
    --hero-accent: #1d4ed8;
    --hero-accent-hover: #2563eb;
    --hero-accent-2: #64748b;
    --hero-accent-rgb: 29, 78, 216;
    --hero-floor-rgb: 96, 165, 250;
    --hero-primary-ink: #ffffff;
    border-bottom-color: rgba(30, 64, 175, 0.12);
    background-image:
        radial-gradient(ellipse 72% 58% at 12% 52%, rgba(var(--hero-blue-rgb), 0.18) 0%, transparent 58%),
        radial-gradient(ellipse 50% 46% at 88% 14%, rgba(var(--hero-accent-rgb), 0.12) 0%, transparent 52%),
        radial-gradient(ellipse 130% 48% at 50% 108%, rgba(147, 197, 253, 0.35) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, transparent 30%, transparent 68%, #e8efff 100%);
}

html[data-color-scheme="light"] .b24-hero::before {
    background: radial-gradient(ellipse 60% 40% at 50% -5%, rgba(255, 255, 255, 0.85) 0%, transparent 55%);
}

html[data-color-scheme="light"] .b24-hero-grid {
    background-image: radial-gradient(rgba(15, 23, 42, 0.07) 1px, transparent 1px);
}

html[data-color-scheme="light"] .b24-hero-title {
    color: #0f172a;
    text-shadow: none;
}

html[data-color-scheme="light"] .b24-hero-title span {
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #1d4ed8 !important;
    color: #1d4ed8 !important;
    filter: none;
}

html[data-color-scheme="light"] .b24-hero-lead {
    color: #64748b;
}

/* ─── Split: слева этапы, справа контент (как «Отделы») ───── */
.input-split-main {
    padding: 28px 0 80px;
    background: var(--b24-bg);
}

.input-split-container {
    max-width: 1180px;
}

.input-split-layout {
    display: grid;
    grid-template-columns: min(280px, 32vw) 1fr;
    gap: 28px 36px;
    align-items: start;
}

.input-split-layout--single {
    grid-template-columns: 1fr;
    gap: 0;
}

.input-toc {
    position: sticky;
    top: 88px;
    align-self: start;
}

.input-toc-nav {
    margin: 0;
}

.input-toc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.input-toc-entry:not(:last-child) {
    padding-bottom: 6px;
    margin-bottom: 5px;
    border-bottom: 1px solid var(--b24-line);
}

.input-toc-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 8px;
    line-height: 1.35;
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.input-toc-item:hover {
    color: var(--b24-text);
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.09);
}

.input-toc-item.is-active {
    color: var(--b24-text);
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(var(--b24-accent-rgb), 0.35);
    box-shadow: 0 0 0 1px rgba(var(--b24-accent-rgb), 0.12);
}

.input-toc-item-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1.35;
}

.input-toc-item-label {
    min-width: 0;
    font-weight: 500;
}

.input-panel {
    min-height: 0;
}

.input-split-layout--scroll .input-panel-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-split-layout--scroll .input-step {
    scroll-margin-top: 96px;
}

.input-empty-state {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: min(320px, calc(100vh - 280px));
    padding: 24px 22px 28px;
    margin-bottom: 6px;
    border-radius: 14px;
    border: 1px solid var(--b24-line);
    background: rgba(255, 255, 255, 0.035);
    box-sizing: border-box;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.input-split-root--active .input-empty-state {
    display: none;
}

.input-empty-state__kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--b24-accent-muted);
    margin: 0 0 10px;
}

.input-empty-state__title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--b24-text);
    margin: 0 0 16px;
    line-height: 1.3;
}

.input-empty-state__body {
    font-size: 0.9375rem;
    color: var(--b24-muted);
    line-height: 1.65;
}

.input-empty-state__body p {
    margin: 0 0 14px;
}

.input-empty-state__body p:last-child {
    margin-bottom: 0;
}

.input-empty-state__body strong {
    color: var(--b24-text);
    font-weight: 600;
}

.input-empty-state__body code {
    font-size: 0.84rem;
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.input-empty-state__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--b24-line);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--b24-accent-muted);
}

.input-empty-state__cta::before {
    content: '←';
    font-size: 1.1rem;
    opacity: 0.85;
}

.input-panel-list {
    position: relative;
}

.input-step {
    padding: 24px 26px 28px;
    margin: 0;
    border: 1px solid var(--b24-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    box-sizing: border-box;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

html[data-color-scheme="light"] .input-step {
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.input-step-panel {
    margin-top: 26px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    text-align: left;
}

.input-step-panel-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--b24-muted);
    margin: 0 0 16px;
}

.input-step-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.94rem;
    line-height: 1.55;
    display: grid;
    gap: 12px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 520px) {
    .input-step-list {
        grid-template-columns: 1fr;
    }
}

.input-step-list li {
    position: relative;
    padding-left: 1em;
    font-weight: 700;
    color: #ffffff;
}

html[data-color-scheme="light"] .input-step-list li {
    color: var(--b24-text);
}

.input-step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ip-free);
    opacity: 0.85;
}

.input-step-list--outbox li::before {
    background: #3b82f6;
    opacity: 0.95;
}

html[data-color-scheme="light"] .input-step-list--outbox li::before {
    background: #2563eb;
    opacity: 1;
}

.input-step-outbox-heading {
    margin: 28px 0 14px;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--b24-muted);
    line-height: 1.45;
}

.input-step-list--outbox {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
}

@media (max-width: 520px) {
    .input-step-list--outbox {
        grid-template-columns: 1fr;
    }
}

#vnedrenie-besplatno {
    scroll-margin-top: 88px;
}

.input-step-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    margin-bottom: 16px;
}

.input-step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    flex: 1 1 auto;
    line-height: 1.3;
}

html[data-color-scheme="light"] .input-step-title {
    color: #0f172a;
}

.input-step-title .input-step-num {
    display: inline-block;
    margin-right: 0.4em;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    color: var(--b24-accent);
    letter-spacing: -0.02em;
}

html[data-color-scheme="light"] .input-step-title .input-step-num {
    color: var(--b24-accent-hover);
}

.input-badge {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 999px;
}

.input-badge--next {
    background: rgba(148, 163, 184, 0.1);
    color: var(--b24-muted);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.input-step-body {
    font-size: 0.975rem;
    color: var(--b24-muted);
    line-height: 1.7;
}

.input-step-body strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

html[data-color-scheme="light"] .input-step-body strong {
    color: #0f172a;
}

.input-step-body a {
    color: var(--b24-accent);
    text-decoration: underline;
    text-decoration-color: rgba(var(--b24-accent-rgb), 0.45);
    text-underline-offset: 0.2em;
}

.input-step-body a:hover {
    text-decoration-color: var(--b24-accent);
}

html[data-color-scheme="light"] .input-step-body a {
    color: var(--b24-accent-hover);
}

.input-step-body + .input-step-body {
    margin-top: 14px;
}

.input-step-cta {
    margin-top: 28px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.input-step-cta--inline {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 28px;
}

.input-step-video-link {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--b24-accent);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 0.28em;
    text-decoration-thickness: 1px;
}

.input-step-video-link:hover {
    color: var(--b24-accent-hover);
}

html[data-color-scheme="light"] .input-step-video-link {
    color: var(--b24-accent-hover);
}

html[data-color-scheme="light"] .input-step-video-link:hover {
    color: #1d4ed8;
}

.input-step-video-link:focus-visible {
    outline: 2px solid var(--b24-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

html[data-color-scheme="light"] .input-step-video-link:focus-visible {
    outline-color: var(--b24-accent-hover);
}

#input-page-demo-video.input-page-demo-video--hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#input-page-demo-video:not(.input-page-demo-video--hidden) {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    width: 100vw;
    height: 100vh;
    max-height: 100dvh;
    object-fit: contain;
    background: #000;
    box-sizing: border-box;
}

html[data-color-scheme="light"] .input-toc-item {
    color: #475569;
}

html[data-color-scheme="light"] .input-toc-item:hover,
html[data-color-scheme="light"] .input-toc-item.is-active {
    color: var(--b24-text);
    background: #fff;
    border-color: #e2e8f0;
}

html[data-color-scheme="light"] .input-empty-state {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

html[data-color-scheme="light"] .input-empty-state__body code {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #334155;
}

@media (max-width: 960px) {
    .input-split-layout {
        grid-template-columns: 1fr;
    }

    .input-toc {
        position: relative;
        top: 0;
        max-height: none;
        padding: 0 0 12px;
    }

    .input-toc-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .input-toc-entry:not(:last-child) {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .input-toc-item {
        flex: 1 1 auto;
        min-width: min(200px, 100%);
        padding: 7px 10px;
    }

    .input-toc-item-icon {
        font-size: 1rem;
    }

    .input-panel {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .input-split-main {
        padding: 20px 0 64px;
    }

    .input-page .b24-hero {
        padding: 64px 0 56px;
    }

    .input-step {
        padding: 22px 20px 24px;
    }

    .input-step-title {
        font-size: 1.025rem;
    }
}

/* ─── Демо-ноутбук в шаге «Установка» ───────────────────────── */
.input-step-laptop {
    margin: 22px auto 6px;
    width: 100%;
}

.input-step-laptop .premium-laptop-showcase {
    margin-left: auto;
    margin-right: auto;
}

.input-step-laptop .premium-laptop-showcase-row .premium-laptop {
    flex: 0 1 auto;
}

.input-step-laptop .premium-laptop__viewport {
    min-height: 420px;
}

@media (max-width: 720px) {
    .input-step-laptop .premium-laptop__viewport {
        min-height: 0;
    }
}

.input-step-laptop .premium-laptop-showcase-row {
    gap: 10px;
}

@media (max-width: 720px) {
    .input-step-laptop .premium-laptop-showcase-row .demo-nav-btn {
        display: none;
    }
}

/* ─── Список улучшений (шаг «Диагностика бизнеса») ─────────── */
.input-step-body--lead {
    font-size: 1rem;
    font-weight: 500;
    color: #f4f4f5;
    margin-bottom: 20px;
}

html[data-color-scheme="light"] .input-step-body--lead {
    color: var(--b24-text);
}

.input-improvements-board {
    margin-top: 4px;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
}

html[data-color-scheme="light"] .input-improvements-board {
    background: transparent;
    border-color: transparent;
}

.input-improvements-board-caption {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--b24-muted);
}

.input-improvements-board-foot {
    margin: 14px 0 0;
    padding-top: 0;
    border-top: none;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--b24-muted);
}

/* Notion-style database table */
.input-notion-table {
    --notion-table-cols: 36px minmax(148px, 1.05fr) minmax(108px, auto) minmax(180px, 1.35fr);
    border: 1px solid var(--b24-line);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

html[data-color-scheme="light"] .input-notion-table {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 0 0 1px rgba(15, 23, 42, 0.02);
}

.input-notion-table-header,
.input-notion-row {
    display: grid;
    grid-template-columns: var(--notion-table-cols);
    align-items: center;
    gap: 0;
}

.input-notion-table-header {
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--b24-line);
}

html[data-color-scheme="light"] .input-notion-table-header {
    background: #f7f7f5;
}

.input-notion-table-header .input-notion-col {
    padding: 8px 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--b24-muted);
    white-space: nowrap;
}

.input-notion-table-body {
    list-style: none;
    margin: 0;
    padding: 0;
}

.input-notion-row {
    border-bottom: 1px solid var(--b24-line);
    transition: background-color 0.15s ease;
}

.input-notion-row:last-child {
    border-bottom: none;
}

.input-notion-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

html[data-color-scheme="light"] .input-notion-row:hover {
    background: rgba(55, 53, 47, 0.03);
}

.input-notion-col {
    min-width: 0;
    padding: 10px 12px;
    font-size: 0.875rem;
    line-height: 1.45;
}

.input-notion-col--num {
    font-size: 0.75rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--b24-muted);
    text-align: center;
    padding-left: 10px;
    padding-right: 6px;
}

.input-notion-col--name {
    font-weight: 600;
    color: #fff;
}

html[data-color-scheme="light"] .input-notion-col--name {
    color: var(--b24-text);
}

.input-notion-col--desc {
    font-size: 0.8125rem;
    color: var(--b24-muted);
}

.input-notion-tag {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
}

.input-notion-tag--high {
    color: #6ee7b7;
    background: rgba(var(--ip-free-rgb), 0.16);
}

.input-notion-tag--fast {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.16);
}

.input-notion-tag--money {
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.14);
}

html[data-color-scheme="light"] .input-notion-tag {
    color: #37352f;
    background: rgba(55, 53, 47, 0.08);
}

html[data-color-scheme="light"] .input-notion-tag--high {
    color: #0f6e56;
    background: rgba(15, 123, 108, 0.14);
}

html[data-color-scheme="light"] .input-notion-tag--fast {
    color: #185fa5;
    background: rgba(35, 102, 178, 0.14);
}

html[data-color-scheme="light"] .input-notion-tag--money {
    color: #9a6700;
    background: rgba(194, 128, 12, 0.14);
}

@media (max-width: 820px) {
    .input-notion-table {
        --notion-table-cols: 1fr;
    }

    .input-notion-table-header {
        display: none;
    }

    .input-notion-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 14px 12px;
    }

    .input-notion-row .input-notion-col {
        padding: 0;
    }

    .input-notion-row .input-notion-col--num {
        display: none;
    }

    .input-notion-row .input-notion-col--name {
        font-size: 0.9375rem;
        margin-bottom: 2px;
    }

    .input-notion-row .input-notion-col--tag {
        margin-bottom: 4px;
    }

    .input-notion-row .input-notion-col--desc {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
}

