/* Theme2 Navigation – Header und Sprachumschalter */

.dl-header {
  padding: 20px 20px 10px;
}

.dl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dl-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--dl-text);
  gap: 2px;
}

.dl-logo__full {
  height: 60px;
  width: auto;
  display: block;
}

.dl-logo__claim {
  font-size: 0.75rem;
  color: var(--dl-muted);
}

.dl-logo__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  box-shadow: var(--dl-shadow-soft);
}

.dl-logo__text {
  display: flex;
  flex-direction: column;
}

.dl-logo__brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dl-lang-switcher {
  display: inline-flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.dl-lang-switcher__btn {
  border: 0;
  background: transparent;
  padding: 4px 10px;
  font-size: 0.78rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--dl-text-soft);
  text-decoration: none;
}

.dl-lang-switcher__btn--active {
  background: var(--dl-bg-active);
  color: var(--dl-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .dl-header__inner {
    flex-direction: row;
    gap: 10px;
  }

  .dl-logo__claim {
    display: none;
  }
}
