.sp-module-content {
  margin: 0 auto;
  max-width: 900px; /* optional: restrict width */
}
.language-switcher {
  max-width: 900px;
  width: 100%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.language-switcher h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: 600;
}

.language-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.mod-languages {
  overflow-x: auto;
  overflow-y: hidden;
}

.lang-inline {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.lang-inline li {
  display: inline-block;
}

.lang-inline li a {
  display: block;
  transition: transform 0.3s ease;
  padding: 10px;
  border-radius: 10px;
}

.lang-inline li a:hover {
  transform: scale(1.05);
}

.lang-inline img {
  width: 150px;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 0.5rem;
  background: #f8f8f8;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}