.expbar-wrap {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 0 8px;
  box-sizing: border-box;
}

.expbar {
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
}

.expbar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.expbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.expbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
  color: #e6edf3;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.expbar-btn:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
}

.expbar-icon {
  width: 40px;
  min-width: 40px;
  padding: 0;
  font-size: 18px;
}

.expbar-btn.is-active {
  background: rgba(59,130,246,0.14);
  border-color: rgba(59,130,246,0.28);
  color: #eef6ff;
}

.experience-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.18);
  color: #dbe9ff;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.experience-badge.subtle {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.07);
  color: #b6c5d8;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 760px) {
  .expbar-wrap {
    padding: 0 14px;
  }

  .expbar {
    display: grid;
    grid-template-columns: 40px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 60px;
    padding-top: 6px;
  }

  .expbar-left {
    justify-content: flex-start;
  }

  .expbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: nowrap;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .expbar-right::-webkit-scrollbar {
    display: none;
  }

  .expbar-btn,
  .expbar-right .login-btn {
    width: auto;
    min-width: unset;
    min-height: 34px;
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 999px;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .expbar-icon {
    width: 34px;
    min-width: 34px;
    padding: 0;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .expbar-btn,
  .expbar-right .login-btn {
    padding: 0 10px;
    font-size: 12px;
  }

  .expbar-icon {
    width: 32px;
    min-width: 32px;
  }
}
