/* ============================================================
   Intent-collection block ("сбор намерения") — landing.
   Additive. All rules scoped under .intent. Reuses the repo
   design tokens from style.css (Roboto, --color-* triplets,
   rem units with html{font-size:62.5%}). Mobile-first.
   ============================================================ */

.section-intent {
    position: relative;
    z-index: 3; /* lift above the hero's .main-decoration blobs (.main is z-index:2) */
    background: rgb(var(--color-black-50));
}

/* wide two-column placement: copy on the left, console on the right */
.intent-layout {
    display: grid;
    grid-template-columns: 1fr 64rem;
    gap: 3.6rem;
    align-items: start;
}

/* nudge the copy down so the eyebrow lines up with the console's first row */
.intent-copy { padding-top: 1.6rem; }

.intent-copy { max-width: 46rem; }

.intent-benefits {
    list-style: none;
    margin: 2.6rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.intent-benefits li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    font-size: 1.5rem;
    line-height: 1.45;
    color: rgb(var(--color-black-900));
}
.intent-benefits__check {
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgb(31 182 114 / .14);
    color: #1FB672;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}
.intent-benefits__check svg { width: 1.4rem; height: 1.4rem; }

.intent-console-col { min-width: 0; }

/* hero scroll cue — lures users down to the block */
.intent-scrollcue {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    margin: 3.2rem auto 0;
    padding: 1.1rem 2rem;
    background: rgb(var(--color-white));
    border: 1.5px solid rgb(var(--color-blue-300));
    border-radius: 4.8rem;
    box-shadow: 0 .6rem 2.2rem rgb(var(--color-main) / .16);
    text-decoration: none;
    cursor: pointer;
    transition: .18s;
    animation: intent-cue-in .5s ease both .3s;
}
.intent-scrollcue:hover {
    border-color: rgb(var(--color-main));
    transform: translateY(-1px);
    box-shadow: 0 .8rem 2.6rem rgb(var(--color-main) / .24);
}
.intent-scrollcue__txt { font-size: 1.45rem; font-weight: 600; color: rgb(var(--color-black-900)); }
.intent-scrollcue__txt b { color: rgb(var(--color-main)); font-weight: 800; }
.intent-scrollcue__arrow {
    flex: 0 0 auto;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: rgb(var(--color-main));
    color: rgb(var(--color-white));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: intent-bob 1.5s ease-in-out infinite;
}
.intent-scrollcue__arrow svg { width: 1.5rem; height: 1.5rem; }
@keyframes intent-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(.5rem); } }
@keyframes intent-cue-in { from { opacity: 0; transform: translateY(.8rem); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
    .intent-layout { grid-template-columns: 1fr; gap: 3rem; max-width: 52rem; margin: 0 auto; }
    .intent-copy { max-width: none; text-align: center; padding-top: 0; }
    .intent-benefits { width: fit-content; margin: 2.4rem auto 0; }
}

.intent {
    --intent-radius: 2rem;
    --intent-border: var(--color-black-300);
    max-width: none;
    font-family: var(--font-main);
}

.intent *,
.intent *::before,
.intent *::after {
    box-sizing: border-box;
}

/* ---------- console card ---------- */
.intent__console {
    background: rgb(var(--color-white));
    border: 1px solid rgb(var(--intent-border));
    border-radius: var(--intent-radius);
    box-shadow: 0 1.6rem 4rem rgb(var(--color-black) / .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.intent__head {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem 2rem;
    border-bottom: 1px solid rgb(var(--intent-border));
    background: rgb(var(--color-white));
}

.intent__avatar {
    flex: 0 0 auto;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgb(var(--color-main) / .1);
    color: rgb(var(--color-main));
    display: flex;
    align-items: center;
    justify-content: center;
}

.intent__avatar svg {
    width: 2.2rem;
    height: 2.2rem;
}

.intent__head-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--color-title));
}

.intent__head-sub {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .2rem;
    font-size: 1.3rem;
    color: rgb(var(--color-black-500));
}

.intent__live {
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    background: #1FB672;
    box-shadow: 0 0 0 .3rem rgb(31 182 114 / .18);
}

/* ---------- thread / body ---------- */
.intent__body {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 2rem;
    max-height: 46rem;
    overflow-y: auto;
}

.intent__row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    max-width: 100%;
}

.intent__row--user {
    flex-direction: row-reverse;
}

/* small bot avatar shown next to assistant messages in the thread */
.intent__avatar-sm {
    flex: 0 0 auto;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: rgb(var(--color-main) / .1);
    color: rgb(var(--color-main));
    display: flex;
    align-items: center;
    justify-content: center;
}

.intent__avatar-sm svg { width: 2rem; height: 2rem; }

.intent__bubble {
    max-width: 78%;
    width: fit-content;
    padding: 1.2rem 1.6rem;
    border-radius: 1.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    word-break: break-word;
    animation: intent-rise .32s cubic-bezier(.2, .7, .3, 1) both;
}

.intent__bubble--bot {
    background: rgb(var(--color-black-200));
    color: rgb(var(--color-black-900));
    border-bottom-left-radius: .6rem;
}

.intent__bubble--user {
    background: rgb(var(--color-main));
    color: rgb(var(--color-white));
    font-weight: 500;
    border-bottom-right-radius: .6rem;
}

@keyframes intent-rise {
    from { transform: translateY(.8rem) scale(.98); opacity: 0; }
    to   { transform: none; opacity: 1; }
}

/* ---------- typing indicator ---------- */
.intent__typing {
    display: inline-flex;
    gap: .5rem;
    padding: 1.5rem 1.6rem;
    align-items: center;
}

.intent__typing i {
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    background: rgb(var(--color-black-500));
    animation: intent-blink 1.2s infinite ease-in-out;
}

.intent__status {
    align-self: center;
    font-size: 1.3rem;
    color: rgb(var(--color-black-500));
    transition: opacity .2s ease;
}

.intent__typing i:nth-child(2) { animation-delay: .18s; }
.intent__typing i:nth-child(3) { animation-delay: .36s; }

@keyframes intent-blink {
    0%, 80%, 100% { transform: scale(.6); opacity: .45; }
    40%           { transform: scale(1);  opacity: 1; }
}

/* ---------- footer / interaction zone ---------- */
.intent__foot {
    border-top: 1px solid rgb(var(--intent-border));
    padding: 1.6rem 2rem 2rem;
    background: rgb(var(--color-black-50));
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* progress hint */
.intent__hint {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(var(--color-blue-800));
    background: rgb(var(--color-main) / .08);
    border-radius: 4.8rem;
    padding: .6rem 1.3rem;
}

/* platform selector */
.intent__platforms {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .8rem;
}

.intent__platforms-label {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(var(--color-black-500));
}

/* channels as a single row: fits on desktop, swipeable on mobile —
   the 6th chip never wraps alone */
.intent__platforms-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.intent__platform { flex: 0 0 auto; }

.intent__platform {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(var(--color-black-700));
    background: rgb(var(--color-white));
    border: 1.5px solid rgb(var(--intent-border));
    border-radius: 4.8rem;
    padding: .7rem 1rem;
    cursor: pointer;
    transition: .15s;
}

.intent__platform:hover {
    border-color: rgb(var(--color-blue-300));
}

.intent__platform--active {
    border-color: rgb(var(--color-main));
    background: rgb(var(--color-main) / .08);
    color: rgb(var(--color-main));
}

/* composer (free-text entry) */
.intent__composer {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    background: rgb(var(--color-white));
    border: 1.5px solid rgb(var(--intent-border));
    border-radius: 1.6rem;
    padding: .8rem .8rem .8rem 1.6rem;
    transition: .15s;
}

.intent__composer:focus-within {
    border-color: rgb(var(--color-main));
    box-shadow: 0 0 0 .4rem rgb(var(--color-main) / .14);
}

.intent__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    resize: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.5;
    color: rgb(var(--color-black-900));
    padding: .9rem 0;
    max-height: 12rem;
}

.intent__input::placeholder {
    color: rgb(var(--color-black-500));
}

.intent__send {
    flex: 0 0 auto;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    border: none;
    background: rgb(var(--color-main));
    color: rgb(var(--color-white));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 .4rem .8rem .3rem rgb(var(--color-black) / .15);
    transition: .15s;
}

.intent__send svg { width: 2rem; height: 2rem; }
.intent__send:hover:not(:disabled) { box-shadow: none; }

.intent__send:disabled {
    background: rgb(var(--color-black-300));
    box-shadow: none;
    cursor: default;
}

/* quick suggestion chips under the resting composer */
.intent__suggests {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.intent__suggest {
    font-size: 1.35rem;
    font-weight: 500;
    color: rgb(var(--color-main));
    background: rgb(var(--color-main) / .08);
    border: 1px solid rgb(var(--color-main) / .2);
    border-radius: 4.8rem;
    padding: .7rem 1.3rem;
    cursor: pointer;
    transition: .15s;
}

.intent__suggest:hover { background: rgb(var(--color-main) / .14); }

/* answer chips (single / multi select) */
.intent__answer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding-left: 4.4rem; /* align options with the bot bubble text (avatar 3.4rem + gap 1rem) */
}

/* hint above the options — reinforces single vs multi */
.intent__answer-hint {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(var(--color-black-500));
}
.intent__answer-hint-ic { display: inline-flex; color: rgb(var(--color-main)); }
.intent__answer-hint-ic svg { width: 1.5rem; height: 1.5rem; }

.intent__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

/* single = round radio marker, multi = square checkbox marker */
.intent__chip--single,
.intent__chip--multi { padding-left: 1.3rem; }

.intent__radio {
    flex: 0 0 auto;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    border: 2px solid rgb(var(--color-black-300));
    position: relative;
    transition: .14s;
}
.intent__chip--single:hover .intent__radio { border-color: rgb(var(--color-main)); }
.intent__chip--single:hover .intent__radio::after,
.intent__chip--selected .intent__radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: rgb(var(--color-main));
}
.intent__chip--selected .intent__radio { border-color: rgb(var(--color-white)); }
.intent__chip--selected .intent__radio::after { background: rgb(var(--color-white)); }

.intent__box {
    flex: 0 0 auto;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: .5rem;
    border: 2px solid rgb(var(--color-black-300));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: .14s;
}
.intent__box svg { width: 1.2rem; height: 1.2rem; }
.intent__chip--multi:hover .intent__box { border-color: rgb(var(--color-main)); }
.intent__chip--selected .intent__box {
    background: rgb(var(--color-white));
    border-color: rgb(var(--color-white));
    color: rgb(var(--color-main));
}

.intent__chip {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(var(--color-black-700));
    background: rgb(var(--color-white));
    border: 1.5px solid rgb(var(--color-black-300));
    border-radius: 4.8rem;
    padding: 1rem 1.8rem;
    cursor: pointer;
    transition: .15s;
    line-height: 1.15;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
}

.intent__chip:hover {
    border-color: rgb(var(--color-main));
    color: rgb(var(--color-main));
}

.intent__chip--selected {
    background: rgb(var(--color-main));
    color: rgb(var(--color-white));
    border-color: transparent;
}

/* keep white text on the blue fill when hovering a selected chip
   (otherwise .intent__chip:hover turns the text blue -> invisible) */
.intent__chip--selected:hover {
    background: rgb(var(--color-main));
    color: rgb(var(--color-white));
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 .4rem .8rem .2rem rgb(var(--color-black) / .15);
}

.intent__chip-done {
    align-self: flex-start;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(var(--color-white));
    background: rgb(var(--color-main));
    border: none;
    border-radius: 4.8rem;
    padding: 1.1rem 2.2rem;
    cursor: pointer;
    box-shadow: 0 .4rem .8rem .3rem rgb(var(--color-black) / .15);
    transition: .15s;
}

.intent__chip-done:hover:not(:disabled) { box-shadow: none; }

.intent__chip-done:disabled {
    background: rgb(var(--color-black-300));
    box-shadow: none;
    cursor: not-allowed;
}

/* free-text row available alongside chips */
.intent__or {
    font-size: 1.3rem;
    color: rgb(var(--color-black-500));
}

/* summary + CTA (READY) */
.intent__summary {
    background: rgb(var(--color-white));
    border: 1px solid rgb(var(--intent-border));
    border-radius: 1.6rem;
    padding: 2rem;
    animation: intent-rise .4s cubic-bezier(.2, .7, .3, 1) both;
}

.intent__summary-lead {
    font-size: 1.7rem;
    font-weight: 700;
    color: rgb(var(--color-title));
    margin: 0 0 1.4rem;
    line-height: 1.3;
}

.intent__summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intent__summary-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 1.5rem;
    line-height: 1.4;
    color: rgb(var(--color-black-900));
}

.intent__summary-list svg {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    color: #1FB672;
    margin-top: .1rem;
}

.intent__summary-k {
    color: rgb(var(--color-black-500));
    font-weight: 500;
}

.intent__cta {
    width: 100%;
    text-align: center;
    margin-top: .4rem;
}

.intent__cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    font-size: 1.3rem;
    color: rgb(var(--color-black-500));
    text-align: center;
}

.intent__cta-note svg { width: 1.4rem; height: 1.4rem; color: #1FB672; flex: 0 0 auto; }

/* edge-state banners */
.intent__banner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 1.4rem;
    line-height: 1.45;
    padding: 1.2rem 1.4rem;
    border-radius: 1.2rem;
}

.intent__banner svg { width: 1.8rem; height: 1.8rem; flex: 0 0 auto; margin-top: .1rem; }
.intent__banner--restore { background: rgb(var(--color-main) / .08); color: rgb(var(--color-blue-800)); }
.intent__banner--limit   { background: #FFF5E0; color: #9A6A00; }
.intent__banner--warn    { background: #FDEAEA; color: #C0322B; }

/* small restart link */
.intent__restart {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgb(var(--color-black-500));
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem 0;
}

.intent__restart:hover { color: rgb(var(--color-main)); }

/* ============================================================
   v2 — explicit chat entry (prominent first input)
   ============================================================ */

/* section eyebrow above the title */
.intent-eyebrow {
    display: inline-block;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgb(var(--color-main));
}

/* at rest the thread is empty — collapse it so the panel reads as one card */
.intent__body:empty { display: none; }
.intent__body:empty + .intent__foot {
    border-top: none;
    background: rgb(var(--color-white));
}

/* "type right here" hint */
.intent__starthint {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: rgb(var(--color-black-900));
}

.intent__starthint-ic { display: inline-flex; color: rgb(var(--color-main)); }
.intent__starthint-ic svg { width: 1.8rem; height: 1.8rem; }

/* channel brand marks */
.intent__platform-ic {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1;
    flex: 0 0 auto;
}

.intent__platform-ic svg { width: 1.1rem; height: 1.1rem; }

/* prominent resting composer */
.intent__composer--lead {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    padding: 1.6rem;
    border-color: rgb(var(--color-main));
    box-shadow: 0 0 0 .4rem rgb(var(--color-main) / .12);
}

.intent__composer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.intent__enter-hint {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.3rem;
    color: rgb(var(--color-black-500));
}

.intent__enter-hint kbd {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: rgb(var(--color-black-700));
    background: rgb(var(--color-black-200));
    border: 1px solid rgb(var(--color-black-300));
    border-radius: .6rem;
    padding: .2rem .8rem;
}

.intent__go {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(var(--color-white));
    background: rgb(var(--color-main));
    border: none;
    border-radius: 4.8rem;
    padding: 1.2rem 2.4rem;
    cursor: pointer;
    box-shadow: 0 .4rem .8rem .3rem rgb(var(--color-black) / .15);
    transition: .15s;
}

.intent__go svg { width: 1.8rem; height: 1.8rem; }
.intent__go:hover:not(:disabled) { box-shadow: none; }
.intent__go:disabled { background: rgb(var(--color-black-300)); box-shadow: none; cursor: default; }

/* suggestion group */
.intent__suggests-box {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.intent__suggests-lead {
    font-size: 1.3rem;
    color: rgb(var(--color-black-500));
}

.intent__suggest {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.intent__suggest-arrow { color: rgb(var(--color-main)); font-weight: 700; }

/* ============================================================
   v2 — motion & micro-interactions
   ============================================================ */

/* blinking caret in the live bubble while tokens stream in */
.intent__caret {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    margin-left: 1px;
    vertical-align: -2px;
    background: rgb(var(--color-main));
    border-radius: 1px;
    animation: intent-caret 1s steps(1) infinite;
}
@keyframes intent-caret { 50% { opacity: 0; } }

/* tactile press feedback */
.intent__send:active:not(:disabled),
.intent__go:active:not(:disabled),
.intent__chip-done:active:not(:disabled),
.intent__chip:active,
.intent__platform:active,
.intent__suggest:active,
.intent__cta:active,
.intent__restart:active { transform: scale(.96); }

/* CTA: gentle lift on hover (entrance below reverts to base, so this works) */
.intent__cta {
    transition: transform .15s ease, box-shadow .3s ease, background .3s ease;
}
.intent__cta:hover { transform: translateY(-1px); }

/* chip select pop */
.intent__chip--selected { animation: intent-pop .22s cubic-bezier(.2, .7, .3, 1); }
@keyframes intent-pop {
    0%   { transform: scale(.9); }
    60%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* summary: stagger the captured facets, then reveal CTA + note */
.intent__summary-list li { animation: intent-rise .34s cubic-bezier(.2, .7, .3, 1) backwards; }
.intent__summary-list li:nth-child(1) { animation-delay: .04s; }
.intent__summary-list li:nth-child(2) { animation-delay: .10s; }
.intent__summary-list li:nth-child(3) { animation-delay: .16s; }
.intent__summary-list li:nth-child(4) { animation-delay: .22s; }
.intent__cta { animation: intent-rise .36s cubic-bezier(.2, .7, .3, 1) .26s backwards; }
.intent__cta-note { animation: intent-rise .34s ease .34s backwards; }

/* skeleton — shown on block open while availability resolves */
.intent__skeleton .intent__head { align-items: center; }
.intent__skeleton .intent__head,
.intent__skeleton .intent__body,
.intent__skeleton .intent__foot { pointer-events: none; }

.intent__sk {
    display: block;
    background: linear-gradient(90deg, rgb(var(--color-black-200)) 25%, rgb(var(--color-black-50)) 50%, rgb(var(--color-black-200)) 75%);
    background-size: 200% 100%;
    border-radius: .8rem;
    animation: intent-shimmer 1.3s ease-in-out infinite;
}
@keyframes intent-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.intent__sk-av { width: 4rem; height: 4rem; border-radius: 50%; flex: 0 0 auto; }
.intent__sk-lines { display: flex; flex-direction: column; gap: .7rem; }
.intent__sk-line { height: 1.2rem; width: 16rem; }
.intent__sk-line--sm { width: 10rem; height: 1rem; }
.intent__sk-bubble { height: 4rem; border-radius: 1.4rem; }
.intent__sk-input { height: 7rem; border-radius: 1.6rem; }

@media screen and (max-width: 768px) {
    .intent__body { max-height: none; padding: 1.6rem; }
    .intent__bubble { max-width: 88%; font-size: 1.5rem; }
    .intent__foot { padding: 1.4rem 1.6rem 1.8rem; }
    .intent__composer-row { flex-wrap: wrap; }
    .intent__go { flex: 1; justify-content: center; }
    .intent__answer { padding-left: 0; }
    .intent__avatar-sm { width: 3rem; height: 3rem; }
    .intent__avatar-sm svg { width: 1.7rem; height: 1.7rem; }
}

/* respect reduced-motion: collapse animations/transitions, drop the caret */
@media (prefers-reduced-motion: reduce) {
    .intent *,
    .intent *::before,
    .intent *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    .intent__caret { display: none; }
    .intent-scrollcue,
    .intent-scrollcue__arrow { animation: none !important; }
}
