.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  justify-content: space-between;
  border: 1px solid rgba(229, 57, 53, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 11px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switcher-trigger:hover {
  border-color: rgba(229, 57, 53, 0.35);
  color: #c62828;
}

.lang-switcher-caret {
  font-size: 10px;
  color: #94a3b8;
}

.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(229, 57, 53, 0.14);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}

.lang-switcher.open .lang-switcher-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switcher-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switcher-btn:hover {
  color: #c62828;
  background: rgba(229, 57, 53, 0.08);
}

.lang-switcher-btn.active {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.14) 0%, rgba(198, 40, 40, 0.1) 100%);
  color: #b42318;
}

.lang-switcher-code {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
}

.lang-switcher-mobile {
  margin: 18px 20px 10px;
  padding: 16px;
  border: 1px solid rgba(229, 57, 53, 0.12);
  border-radius: 16px;
  background: #fff;
}

.lang-switcher-mobile-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}

body.lang-en .lang-fit-tight,
body.lang-ru .lang-fit-tight,
body.lang-vi .lang-fit-tight {
  font-size: 0.95em;
}

@media (max-width: 992px) {
  .main-nav .contact-btn {
    display: none !important;
  }

  .main-nav-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1200px) {
  .lang-switcher {
    display: none;
  }

  .lang-switcher-mobile .lang-switcher {
    display: inline-flex;
    width: 100%;
  }

  .lang-switcher-mobile .lang-switcher-trigger {
    width: 100%;
    border-radius: 14px;
  }

  .lang-switcher-mobile .lang-switcher-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }
}

.news-list .news-category {
  position: static !important;
  top: auto !important;
  left: auto !important;
}

.news-list .news-item {
  position: relative;
}
