/* Оранжевый фон нижней панели — все блоки ME303A на странице */

.t967__bottom {
  position: relative;
  background-color: transparent;
}

/* Псевдоэлемент растягивает фон на всю ширину экрана */
.t967__bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #fc9a29;
  z-index: 0;
}

/* Контент поверх фона */
.t967__bottom > * {
  position: relative;
  z-index: 1;
}

/* Белые ссылки на оранжевом фоне */
.t967__bottom .t-menu__link-item {
  color: #ffffff !important;
}

.t967__bottom .t-menu__link-item:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Тонкие разделители */
.t967__bottom .t-divider {
  opacity: 0.3;
}