/* ── ME201: красная линия под 2-м пунктом ── */

/* Нужен relative для псевдоэлемента */
.t456__list_item:nth-child(2) .t-menu__link-item {
  position: relative;
}

/* Сама линия снизу пункта */
.t456__list_item:nth-child(2) .t-menu__link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #ee0000;
  border-radius: 1px 1px 0 0;
  pointer-events: none;
}

/* ── Тильда ME405: выделение пункта меню красной линией ── */

/* Убираем стандартное подчёркивание у всех пунктов */
.t451m__list_item a.t-menu__link-item {
  text-decoration: none;
  position: relative;
}

/* Нужный пункт — замените "2" на номер вашего пункта */
.t451m__list_item a.t-menu__link-item[data-menu-item-number="2"] {
  padding-bottom: 1px;
}

.t451m__list_item a.t-menu__link-item[data-menu-item-number="2"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #E53935;
  border-radius: 1px;
}