/* ==========================================================================
   components.css — блоки контента. Один компонент = одно имя на весь сайт.
   Порядок: секция → интро → плитки → цены → шаги → карточки проверок →
   чек-лист → таймлайн → фильтр каталога → FAQ → карта → «последние поиски» →
   документы → доверие → CTA.
   ========================================================================== */

/* --- Секция и её заголовок ----------------------------------------------- */

.section {
    padding-top: var(--gap-section);
    scroll-margin-top: 18px;
}

.section__head {
    max-width: 800px;
    margin-bottom: 32px;
}

.section__head p {
    margin-top: 15px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

/* Выноска-примечание под блоком. */
.note {
    margin-top: 16px;
    padding: 17px 20px;
    border-left: 3px solid var(--accent);
    background: var(--surface-soft);
    color: var(--muted);
    line-height: 1.55;
}

/* --- Интро: текст + боковая карточка ------------------------------------- */

.intro {
    display: grid;
    gap: 22px;
    padding-top: 64px;
}

/* Интро внутри секции — отступ уже задан секцией. */
.intro--flush { padding-top: 0; }

.intro__text > p {
    max-width: 720px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.67;
}

.intro__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
}

.intro__links a {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--accent);
}

.intro__links a:hover { color: var(--accent); }

.intro__aside {
    padding: 28px;
    border: 1px solid var(--accent-line);
    border-radius: var(--radius);
    background: linear-gradient(140deg, var(--accent-fill), transparent 58%), var(--surface);
}

.intro__aside > span { color: var(--muted); font-size: 13px; }

.intro__aside > strong {
    display: block;
    margin: 9px 0 12px;
    font-size: 22px;
    line-height: 28px;
}

.intro__aside > .intro__price { font-size: 42px; line-height: 1; }

.intro__aside p { color: var(--muted); font-size: 14px; line-height: 1.55; }

.intro__aside dl { margin-top: 20px; border-top: 1px solid var(--line); }
.intro__aside dl div { display: flex; justify-content: space-between; gap: 20px; padding-top: 9px; }
.intro__aside dt { color: var(--muted); }
.intro__aside dd { font-weight: 700; }

.intro__aside > a {
    display: inline-block;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 700;
}

/* --- Простые ссылки-чипсы (список марок на главной) ---------------------- */

.links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.links a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    font-weight: 700;
}

.links a::after { content: '→'; color: var(--accent); font-weight: 400; }
.links a:hover { border-color: var(--accent-line-hover); background: var(--surface-2); }

/* --- Переключатель типа транспорта (под полем поиска) -------------------- */

.filter__types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.filter__types button {
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted);
    font-weight: 700;
}

.filter__types button:hover { border-color: var(--accent); color: var(--text); }

.filter__types button.is-active {
    border-color: var(--accent);
    background: var(--accent-fill);
    color: var(--text);
}

/* --- Плитки быстрого выбора ---------------------------------------------- */

.tiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}

/* Содержимое прижато к верху, а «Открыть →» — к низу через margin-top: auto.
   Иначе при выравнивании по низу плитка с двухстрочным названием поднимает свою
   надпись категории выше соседних, и ряд выглядит рваным. */
.tile {
    position: relative;
    display: flex;
    min-height: 138px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 23px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent-wash), transparent 48%), var(--surface);
}

.tile::after {
    content: '';
    position: absolute;
    top: -48px;
    right: -42px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent-fill);
    border-radius: 50%;
}

.tile:hover { transform: translateY(-3px); border-color: var(--accent-line-hover); }

.tile small {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tile strong { font-size: 19px; }
.tile__go { margin-top: auto; padding-top: 14px; color: var(--muted); font-size: 12px; }

/* --- Цены ---------------------------------------------------------------- */

.prices { display: grid; gap: 11px; }

.price {
    display: grid;
    gap: 15px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.price--featured {
    border-color: var(--accent-line-hover);
    background: linear-gradient(125deg, var(--accent-fill), transparent 50%), var(--surface);
}

.price__code span { display: block; color: var(--accent); font-size: 24px; font-weight: 700; }
.price__code small { font-size: 14px; font-weight: 700; }
.price p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.price__sum { align-self: center; font-size: 24px; font-weight: 700; white-space: nowrap; }

/* --- Нумерованные шаги --------------------------------------------------- */

.steps { display: grid; gap: 12px; }

.steps li {
    display: flex;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.steps li > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.steps h3 { margin-bottom: 7px; font-size: 19px; }
.steps p { color: var(--muted); line-height: 1.55; }

/* --- Карточки проверок --------------------------------------------------- */

.features { display: grid; gap: 12px; }

.features article {
    position: relative;
    min-height: 200px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent-wash), transparent 48%), var(--surface);
}

.features article::after {
    content: '';
    position: absolute;
    right: -46px;
    bottom: -48px;
    width: 125px;
    height: 125px;
    border: 1px solid var(--accent-soft);
    border-radius: 50%;
}

.features article > span {
    display: block;
    margin-bottom: 32px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.features h3 { margin-bottom: 10px; }
.features p { color: var(--muted); line-height: 1.58; }

/* --- Чек-лист и карточка документов -------------------------------------- */

.checklist-layout { display: grid; gap: 16px; }

.checklist {
    padding: 27px;
    border-radius: var(--radius);
    background: var(--surface);
}

.checklist li {
    position: relative;
    padding: 14px 0 14px 38px;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    line-height: 1.55;
}

.checklist li:last-child { border-bottom: 0; }

.checklist li::before {
    content: '✓';
    position: absolute;
    top: 13px;
    left: 0;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-fill);
    color: var(--accent);
    font-weight: 700;
}

.docs-card {
    padding: 28px;
    border: 1px solid var(--purple-line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--purple-soft), transparent 58%), var(--surface);
}

.docs-card h3 { margin-bottom: 18px; font-size: 25px; line-height: 31px; }

.docs-card p {
    position: relative;
    margin: 12px 0;
    padding-left: 19px;
    color: var(--muted);
}

.docs-card p::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
}

.docs-card small { display: block; margin-top: 20px; color: var(--dim); line-height: 1.5; }
.docs-card .btn { margin-top: 20px; min-height: 48px; }

/* --- Таймлайн ------------------------------------------------------------ */

.timeline {
    position: relative;
    display: grid;
    gap: 14px;
    padding-left: 42px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 19px;
    width: 1px;
    background: linear-gradient(var(--accent), var(--purple-line));
}

.timeline__item {
    position: relative;
    padding: 28px 30px 28px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(112deg, var(--accent-wash), transparent 40%), var(--surface);
}

.timeline__item:nth-child(even) {
    background: linear-gradient(112deg, var(--purple-wash), transparent 40%), var(--surface);
}

.timeline__item--result { border-color: var(--purple-line); }

.timeline__num {
    position: absolute;
    top: 25px;
    left: -44px;
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--accent);
    border-radius: 50%;
    background: var(--bg);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 0 0 7px var(--accent-wash);
}

.timeline__label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.timeline__label::after { content: ''; width: 38px; height: 1px; background: currentColor; opacity: .6; }

.timeline h3 { margin-bottom: 13px; font-size: 22px; line-height: 28px; }
.timeline p { color: var(--text-soft); font-size: 16px; line-height: 1.72; }

/* Вводка и список узлов внутри пункта таймлайна (блок «Диагностика»).
   С 800px название узла уезжает в левую колонку, ниже — обычный столбик. */

.timeline__intro {
    margin-bottom: 22px;
    padding: 15px 18px;
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--accent-soft);
}

.timeline__list { display: grid; }

.timeline__list li { padding: 18px 0; border-top: 1px solid var(--line); }

.timeline__list h4 { margin-bottom: 6px; color: var(--accent); font-size: 16px; line-height: 1.4; }
.timeline__list p { color: var(--muted); font-size: 15px; line-height: 1.62; }

.signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 22px;
    padding-left: 42px;
    color: var(--muted);
    font-size: 13px;
}

.signature strong { color: var(--text); }

/* --- Фильтр каталога (модели на марке, марки в каталоге) ----------------- */

.filter__tools {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.filter__tools label { font-size: 13px; font-weight: 700; }

.filter__search { position: relative; }

.filter__search input {
    width: 100%;
    height: 54px;
    padding: 0 52px 0 17px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    outline: none;
    background: var(--bg);
    color: var(--text);
}

.filter__search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.filter__search input::placeholder { color: var(--dim); }
.filter__search input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }

.filter__clear {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 46px;
    height: 46px;
    color: var(--muted);
    font-size: 25px;
}

.filter__clear:hover { color: var(--text); }

.filter__count { color: var(--accent); font-size: 13px; }

.filter__letters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 16px 0;
}

.filter__letters button {
    min-width: 36px;
    height: 36px;
    padding: 0 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--muted);
    font-weight: 700;
}

.filter__letters button:hover,
.filter__letters button.is-active {
    border-color: var(--accent);
    background: var(--accent-fill);
    color: var(--text);
}

.filter__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
}

.filter__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: 'top action' 'name action';
    align-items: center;
    min-width: 0;
    padding: 15px 17px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.filter__item:hover { border-color: var(--accent-line-hover); background: var(--surface-2); }
.filter__item[hidden] { display: none; }

.filter__item > span:first-child {
    grid-area: top;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.filter__item > strong {
    grid-area: name;
    margin-top: 2px;
    overflow-wrap: anywhere;
    font-size: 15px;
}

/* Компактная строка со значком буквы — список марок в каталоге.
   На странице марки строка двухстрочная: сверху марка, снизу модель. */
.filter__item--letter {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    grid-template-areas: 'badge name action';
    gap: 0;
    min-height: 62px;
    padding: 10px 16px;
}

.filter__item--letter > span:first-child {
    display: grid;
    grid-area: badge;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    letter-spacing: 0;
    text-transform: none;
}

.filter__item--letter > strong {
    grid-area: name;
    margin-top: 0;
    font-size: 16px;
}

/* Действие целиком бирюзовое, как в исходном каталоге. */
.filter__item--letter .filter__go {
    gap: 6px;
    margin-left: 12px;
    color: var(--accent);
    font-size: 13px;
}

.filter__item--letter .filter__go b { font-size: 13px; }

.filter__go {
    display: flex;
    grid-area: action;
    align-items: center;
    gap: 7px;
    margin-left: 14px;
    color: var(--muted);
    font-size: 11px;
    white-space: nowrap;
}

.filter__go b { color: var(--accent); font-size: 17px; font-weight: 400; transition: transform .2s ease; }
.filter__item:hover .filter__go b { transform: translateX(3px); }

.filter__empty {
    padding: 30px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
}

/* --- FAQ ----------------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
    position: relative;
    padding: 22px 50px 22px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: '+';
    position: absolute;
    top: 20px;
    right: 8px;
    color: var(--accent);
    font-size: 28px;
    font-weight: 400;
}

.faq details[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--accent); }

.faq details p {
    max-width: 820px;
    padding: 0 50px 22px 0;
    color: var(--muted);
    line-height: 1.7;
}

/* --- Карта и адрес (эталон — с главной) ---------------------------------- */

.location__map {
    height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--surface);
}

.location__map iframe { display: block; width: 100%; height: 100%; border: 0; }

.location__details {
    display: grid;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--surface);
}

.location__details span,
.location__details a {
    padding: 17px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.location__details strong { display: block; margin-bottom: 4px; color: var(--text); }
.location__details a { display: flex; align-items: center; color: var(--accent); font-weight: 700; }
.location__details a:hover { color: var(--accent-dark); }

/* --- «Последние поиски» (эталон — со страницы модели) -------------------- */

.related { display: grid; grid-template-columns: 1fr; gap: 14px; }

.related__card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 150px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.related__card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-line-hover);
    box-shadow: var(--shadow-lift);
}

.related__card:focus-visible { outline: 3px solid var(--accent-line-hover); outline-offset: 3px; }

.related__image {
    position: relative;
    flex: 0 0 42%;
    min-width: 120px;
    overflow: hidden;
    background: var(--surface-dark);
}

.related__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, rgba(64, 64, 70, .45));
    pointer-events: none;
}

.related__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(1.05);
    transition: transform .35s ease, filter .35s ease;
}

.related__card:hover .related__image img { transform: scale(1.045); filter: saturate(1); }

.related__body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.related__body small {
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.related__body strong { overflow-wrap: anywhere; font-size: 18px; line-height: 1.3; }

.related__go {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 13px;
}

.related__go b { color: var(--accent); font-size: 18px; font-weight: 400; transition: transform .2s ease; }
.related__card:hover .related__go b { transform: translateX(4px); }

/* --- Документы оператора ------------------------------------------------- */

.docs { display: grid; gap: 12px; }

.docs a {
    display: flex;
    min-height: 155px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue-wash), transparent 55%), var(--surface);
}

.docs a:hover { border-color: var(--blue-line-hover); transform: translateY(-3px); }

.docs small { color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.docs strong { margin-top: 8px; font-size: 18px; line-height: 1.4; }
.docs span { margin-top: 15px; color: var(--muted); font-size: 12px; }

/* --- Полоса доверия ------------------------------------------------------ */

.trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.trust div { padding: 20px; border-bottom: 1px solid var(--line); }
.trust div:nth-child(odd) { border-right: 1px solid var(--line); }
.trust div:nth-last-child(-n+2) { border-bottom: 0; }
.trust strong { display: block; margin-bottom: 5px; color: var(--accent); font-size: 18px; }
.trust span { display: block; color: var(--muted); font-size: 13px; line-height: 18px; }

/* --- CTA-панель ---------------------------------------------------------- */

.cta {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: var(--gap-section);
    padding: 34px;
    border: 1px solid var(--accent-line);
    border-radius: var(--radius);
    background: linear-gradient(110deg, var(--accent-fill), var(--purple-wash)), var(--surface);
}

.cta h2 { font-size: clamp(27px, 3.5vw, 40px); }
.cta p { margin-top: 10px; color: var(--muted); }

/* --- Адаптив ------------------------------------------------------------- */

@media (min-width: 600px) {
    .price { grid-template-columns: minmax(180px, .7fr) minmax(0, 1.4fr) auto; align-items: center; }
    .links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .filter__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .docs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .location__details { grid-template-columns: 2fr 1fr 1fr 1.25fr; }
    .location__details span,
    .location__details a { border-right: 1px solid var(--line); border-bottom: 0; }
    .location__details > *:last-child { border-right: 0; }
}

@media (min-width: 800px) {
    .intro { grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); align-items: center; }
    .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .steps li { flex-direction: column; }
    .steps--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .timeline__list li { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 26px; padding: 20px 0; }
    .timeline__list h4 { margin-bottom: 0; }
    .checklist-layout { grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); }
    .links { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .filter__tools { grid-template-columns: auto minmax(260px, 520px) 1fr; align-items: center; }
    .filter__count { justify-self: end; }
    .cta { flex-direction: row; align-items: center; justify-content: space-between; }
    .cta > .btn { flex: 0 0 auto; }
}

@media (min-width: 920px) {
    .trust { grid-template-columns: repeat(4, 1fr); }
    .trust div,
    .trust div:nth-child(odd) { border-right: 1px solid var(--line); border-bottom: 0; }
    .trust div:last-child { border-right: 0; }
}

@media (min-width: 1050px) {
    .features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .links { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .filter__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .related__card { min-height: 290px; flex-direction: column; }
    .related__image { flex: 0 0 165px; width: 100%; }
    .related__image::after { background: linear-gradient(0deg, rgba(64, 64, 70, .62), transparent 48%); }
    .related__body { width: 100%; justify-content: flex-start; }
}

@media (max-width: 499px) {
    .section { padding-top: 64px; }
    .intro { padding-top: 48px; }
    .links { grid-template-columns: 1fr; }
    .trust { grid-template-columns: 1fr; }
    .trust div,
    .trust div:nth-child(odd),
    .trust div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust div:last-child { border-bottom: 0; }

    .checklist,
    .docs-card { padding: 22px; }

    .timeline { padding-left: 28px; }
    .timeline::before { left: 12px; }
    .timeline__item { padding: 23px 20px 23px 29px; }
    .timeline__num { left: -31px; width: 34px; height: 34px; }
    .timeline h3 { font-size: 19px; line-height: 25px; }
    .timeline p { font-size: 15px; line-height: 1.66; }
    .signature { padding-left: 28px; }

    .filter__go { font-size: 0; }
    .filter__go b { font-size: 18px; }

    /* В каталоге на телефоне от действия остаётся только стрелка. */
    .filter__item--letter { grid-template-columns: 36px minmax(0, 1fr) auto; padding-right: 12px; padding-left: 12px; }
    .filter__item--letter .filter__go { font-size: 0; }
    .filter__item--letter .filter__go b { font-size: 18px; }

    .location__map { height: 330px; }
    .related__body { padding: 17px; }
    .related__body strong { font-size: 16px; }

    .cta { margin-top: 64px; padding: 25px 22px; }
    .features article { min-height: 0; }
}
