/* Увеличиваем ширину контейнера меню */
.t103__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Стили для ссылок в шапке */
.t103__menu__item a {
  font-size: 18px;
  font-weight: 500;
  padding: 16px 24px;
  color: #172644;
  transition: all 0.3s ease;
}

/* Hover эффект */
.t103__menu__item a:hover {
  color: #0057FF;
  text-decoration: underline;
}

/* Выпадающее меню — стилизация */
.t103__submenu {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 16px;
  width: 220px;
}

/* Пункты внутри выпадающего меню */
.t103__submenu__link {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  color: #172644;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.t103__submenu__link:hover {
  background-color: #f0f4ff;
  color: #0057FF;
}

/* Убираем прозрачный фон при наведении */
.t103__submenu:before {
  background: none;
}

/* Добавим лёгкую анимацию появления выпадашки */
.t103__submenu {
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
