@import url('styles-base.css');
@import url('styles-sections.css');
@import url('styles-responsive.css');

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.025);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  color: #7f8792;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .18s ease, background .18s ease;
}

.lang-switch a:hover { color: #fff; }
.lang-switch a.active {
  color: #f4f6f8;
  background: rgba(255,255,255,.085);
}

@media (max-width: 760px) {
  .header-actions { grid-column: 2; gap: 7px; }
  .lang-switch a { min-width: 31px; padding: 0 6px; }
}

@media (max-width: 430px) {
  .header-actions .header-cta { display: none; }
}
